| 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") { | 5 source_set("dialogs") { |
| 6 deps = [ | 6 deps = [ |
| 7 "//base", | 7 "//base", |
| 8 "//ios/web", | 8 "//ios/web", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 ":dialogs", | 27 ":dialogs", |
| 28 "//ios/web", | 28 "//ios/web", |
| 29 "//ios/web:test_support", | 29 "//ios/web:test_support", |
| 30 "//testing/gtest", | 30 "//testing/gtest", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 configs += [ "//build/config/compiler:enable_arc" ] | 33 configs += [ "//build/config/compiler:enable_arc" ] |
| 34 } | 34 } |
| 35 | 35 |
| 36 source_set("dialogs_internal") { | 36 source_set("dialogs_internal") { |
| 37 configs += [ "//build/config/compiler:enable_arc" ] |
| 37 sources = [ | 38 sources = [ |
| 38 "dialog_presenter.h", | 39 "dialog_presenter.h", |
| 39 "dialog_presenter.mm", | 40 "dialog_presenter.mm", |
| 40 "java_script_dialog_presenter_impl.h", | 41 "java_script_dialog_presenter_impl.h", |
| 41 "java_script_dialog_presenter_impl.mm", | 42 "java_script_dialog_presenter_impl.mm", |
| 42 "nsurl_protection_space_util.h", | 43 "nsurl_protection_space_util.h", |
| 43 "nsurl_protection_space_util.mm", | 44 "nsurl_protection_space_util.mm", |
| 44 ] | 45 ] |
| 45 deps = [ | 46 deps = [ |
| 46 ":dialogs", | 47 ":dialogs", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//ios/web", | 100 "//ios/web", |
| 100 "//ios/web:test_support", | 101 "//ios/web:test_support", |
| 101 "//ui/base", | 102 "//ui/base", |
| 102 "//url", | 103 "//url", |
| 103 ] | 104 ] |
| 104 libs = [ | 105 libs = [ |
| 105 "UIKit.framework", | 106 "UIKit.framework", |
| 106 "XCTest.framework", | 107 "XCTest.framework", |
| 107 ] | 108 ] |
| 108 } | 109 } |
| OLD | NEW |