| 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 19 matching lines...) Expand all Loading... |
| 30 ] | 30 ] |
| 31 deps = [ | 31 deps = [ |
| 32 ":alert_coordinator", | 32 ":alert_coordinator", |
| 33 "//base", | 33 "//base", |
| 34 "//testing/gtest", | 34 "//testing/gtest", |
| 35 "//third_party/ocmock", | 35 "//third_party/ocmock", |
| 36 "//ui/base", | 36 "//ui/base", |
| 37 "//ui/strings", | 37 "//ui/strings", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | |
| 41 source_set("alert_coordinator_internal") { | |
| 42 sources = [ | |
| 43 "loading_alert_coordinator.h", | |
| 44 "loading_alert_coordinator.mm", | |
| 45 ] | |
| 46 deps = [ | |
| 47 "//base", | |
| 48 "//components/strings", | |
| 49 "//ios/chrome/browser", | |
| 50 "//ios/chrome/browser/ui", | |
| 51 "//ios/chrome/browser/ui/material_components", | |
| 52 "//ios/third_party/material_components_ios", | |
| 53 "//ios/third_party/material_roboto_font_loader_ios", | |
| 54 "//ui/base", | |
| 55 ] | |
| 56 libs = [ "UIKit.framework" ] | |
| 57 } | |
| 58 | |
| 59 source_set("eg_tests") { | |
| 60 testonly = true | |
| 61 sources = [ | |
| 62 "alert_coordinator_egtest.mm", | |
| 63 ] | |
| 64 deps = [ | |
| 65 "//base", | |
| 66 "//components/strings", | |
| 67 "//ios/chrome/browser/ui/alert_coordinator", | |
| 68 "//ios/chrome/test/earl_grey:test_support", | |
| 69 "//ios/testing/earl_grey:earl_grey_support", | |
| 70 "//ios/third_party/earl_grey", | |
| 71 ] | |
| 72 libs = [ | |
| 73 "UIKit.framework", | |
| 74 "XCTest.framework", | |
| 75 ] | |
| 76 } | |
| OLD | NEW |