| 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 22 matching lines...) Expand all Loading... |
| 33 "input_alert_coordinator_unittest.mm", | 33 "input_alert_coordinator_unittest.mm", |
| 34 "repost_form_coordinator_unittest.mm", | 34 "repost_form_coordinator_unittest.mm", |
| 35 ] | 35 ] |
| 36 deps = [ | 36 deps = [ |
| 37 ":alert_coordinator", | 37 ":alert_coordinator", |
| 38 "//base", | 38 "//base", |
| 39 "//base/test:test_support", | 39 "//base/test:test_support", |
| 40 "//components/strings", | 40 "//components/strings", |
| 41 "//ios/chrome/browser/ui", | 41 "//ios/chrome/browser/ui", |
| 42 "//ios/chrome/test:test_support", | 42 "//ios/chrome/test:test_support", |
| 43 "//ios/web:test_support", | 43 "//ios/web/public/test/fakes:test_support", |
| 44 "//testing/gtest", | 44 "//testing/gtest", |
| 45 "//third_party/ocmock", | 45 "//third_party/ocmock", |
| 46 "//ui/base", | 46 "//ui/base", |
| 47 "//ui/strings", | 47 "//ui/strings", |
| 48 ] | 48 ] |
| 49 } | 49 } |
| 50 | 50 |
| 51 source_set("alert_coordinator_internal") { | 51 source_set("alert_coordinator_internal") { |
| 52 configs += [ "//build/config/compiler:enable_arc" ] | 52 configs += [ "//build/config/compiler:enable_arc" ] |
| 53 sources = [ | 53 sources = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 79 "//components/strings", | 79 "//components/strings", |
| 80 "//ios/chrome/test/earl_grey:test_support", | 80 "//ios/chrome/test/earl_grey:test_support", |
| 81 "//ios/testing/earl_grey:earl_grey_support", | 81 "//ios/testing/earl_grey:earl_grey_support", |
| 82 "//ios/third_party/earl_grey", | 82 "//ios/third_party/earl_grey", |
| 83 ] | 83 ] |
| 84 libs = [ | 84 libs = [ |
| 85 "UIKit.framework", | 85 "UIKit.framework", |
| 86 "XCTest.framework", | 86 "XCTest.framework", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |