Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: ios/clean/chrome/browser/ui/dialogs/BUILD.gn

Issue 2930763003: [iOS Clean] Added HTTP authentication dialog support.
Patch Set: rebase && Mark's comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("dialogs") {
6 public_deps = [
7 "//ios/clean/chrome/browser/ui/dialogs/http_auth_dialogs",
8 ]
9 }
10
5 source_set("dialogs_internal") { 11 source_set("dialogs_internal") {
6 sources = [ 12 sources = [
7 "dialog_coordinator+subclassing.h", 13 "dialog_coordinator+subclassing.h",
8 "dialog_coordinator.h", 14 "dialog_coordinator.h",
9 "dialog_coordinator.mm", 15 "dialog_coordinator.mm",
10 "dialog_mediator+subclassing.h", 16 "dialog_mediator+subclassing.h",
11 "dialog_mediator.h", 17 "dialog_mediator.h",
12 "dialog_mediator.mm", 18 "dialog_mediator.mm",
13 ] 19 ]
14 20
(...skipping 24 matching lines...) Expand all
39 configs += [ "//build/config/compiler:enable_arc" ] 45 configs += [ "//build/config/compiler:enable_arc" ]
40 46
41 deps = [ 47 deps = [
42 "//base", 48 "//base",
43 "//components/strings", 49 "//components/strings",
44 "//ios/chrome/app/strings", 50 "//ios/chrome/app/strings",
45 "//ios/clean/chrome/browser/ui/commands", 51 "//ios/clean/chrome/browser/ui/commands",
46 "//ui/base", 52 "//ui/base",
47 ] 53 ]
48 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698