| 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("alert_coordinator") { | 5 source_set("alert_coordinator") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "action_sheet_coordinator.h", | 8 "action_sheet_coordinator.h", |
| 9 "action_sheet_coordinator.mm", | 9 "action_sheet_coordinator.mm", |
| 10 "alert_coordinator.h", | 10 "alert_coordinator.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "//ios/chrome/browser/ui", | 60 "//ios/chrome/browser/ui", |
| 61 "//ios/chrome/browser/ui/material_components", | 61 "//ios/chrome/browser/ui/material_components", |
| 62 "//ios/third_party/material_components_ios", | 62 "//ios/third_party/material_components_ios", |
| 63 "//ios/third_party/material_roboto_font_loader_ios", | 63 "//ios/third_party/material_roboto_font_loader_ios", |
| 64 "//ui/base", | 64 "//ui/base", |
| 65 ] | 65 ] |
| 66 libs = [ "UIKit.framework" ] | 66 libs = [ "UIKit.framework" ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 source_set("eg_tests") { | 69 source_set("eg_tests") { |
| 70 configs += [ "//build/config/compiler:enable_arc" ] |
| 70 testonly = true | 71 testonly = true |
| 71 sources = [ | 72 sources = [ |
| 72 "alert_coordinator_egtest.mm", | 73 "alert_coordinator_egtest.mm", |
| 73 ] | 74 ] |
| 74 deps = [ | 75 deps = [ |
| 75 ":alert_coordinator", | 76 ":alert_coordinator", |
| 76 "//base", | 77 "//base", |
| 77 "//components/strings", | 78 "//components/strings", |
| 78 "//ios/chrome/test/earl_grey:test_support", | 79 "//ios/chrome/test/earl_grey:test_support", |
| 79 "//ios/testing/earl_grey:earl_grey_support", | 80 "//ios/testing/earl_grey:earl_grey_support", |
| 80 "//ios/third_party/earl_grey", | 81 "//ios/third_party/earl_grey", |
| 81 ] | 82 ] |
| 82 libs = [ | 83 libs = [ |
| 83 "UIKit.framework", | 84 "UIKit.framework", |
| 84 "XCTest.framework", | 85 "XCTest.framework", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |