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