| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |