| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "//ios/chrome/browser/ui", | 51 "//ios/chrome/browser/ui", |
| 52 "//ios/chrome/browser/ui/alert_coordinator", | 52 "//ios/chrome/browser/ui/alert_coordinator", |
| 53 "//ios/web", | 53 "//ios/web", |
| 54 "//ui/base", | 54 "//ui/base", |
| 55 "//url", | 55 "//url", |
| 56 ] | 56 ] |
| 57 libs = [ "UIKit.framework" ] | 57 libs = [ "UIKit.framework" ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("unit_tests_internal") { | 60 source_set("unit_tests_internal") { |
| 61 configs += [ "//build/config/compiler:enable_arc" ] |
| 61 testonly = true | 62 testonly = true |
| 62 sources = [ | 63 sources = [ |
| 63 "dialog_presenter_unittest.mm", | 64 "dialog_presenter_unittest.mm", |
| 64 "nsurl_protection_space_util_unittest.mm", | 65 "nsurl_protection_space_util_unittest.mm", |
| 65 ] | 66 ] |
| 66 deps = [ | 67 deps = [ |
| 67 ":dialogs_internal", | 68 ":dialogs_internal", |
| 68 "//base", | 69 "//base", |
| 69 "//components/strings", | 70 "//components/strings", |
| 70 "//ios/chrome/app/strings", | 71 "//ios/chrome/app/strings", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 98 "//ios/web", | 99 "//ios/web", |
| 99 "//ios/web:test_support", | 100 "//ios/web:test_support", |
| 100 "//ui/base", | 101 "//ui/base", |
| 101 "//url", | 102 "//url", |
| 102 ] | 103 ] |
| 103 libs = [ | 104 libs = [ |
| 104 "UIKit.framework", | 105 "UIKit.framework", |
| 105 "XCTest.framework", | 106 "XCTest.framework", |
| 106 ] | 107 ] |
| 107 } | 108 } |
| OLD | NEW |