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

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

Issue 2930763003: [iOS Clean] Added HTTP authentication dialog support.
Patch Set: rebased, subclassed DialogMediator 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_mediator+internal.h", 13 "dialog_mediator+internal.h",
8 "dialog_mediator.h", 14 "dialog_mediator.h",
9 "dialog_mediator.mm", 15 "dialog_mediator.mm",
10 ] 16 ]
11 17
12 configs += [ "//build/config/compiler:enable_arc" ] 18 configs += [ "//build/config/compiler:enable_arc" ]
13 19
14 deps = [ 20 deps = [
(...skipping 18 matching lines...) Expand all
33 configs += [ "//build/config/compiler:enable_arc" ] 39 configs += [ "//build/config/compiler:enable_arc" ]
34 40
35 deps = [ 41 deps = [
36 "//base", 42 "//base",
37 "//components/strings", 43 "//components/strings",
38 "//ios/chrome/app/strings", 44 "//ios/chrome/app/strings",
39 "//ios/clean/chrome/browser/ui/commands", 45 "//ios/clean/chrome/browser/ui/commands",
40 "//ui/base", 46 "//ui/base",
41 ] 47 ]
42 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698