Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: ios/chrome/browser/ui/alert_coordinator/BUILD.gn

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ] 55 ]
56 libs = [ "UIKit.framework" ] 56 libs = [ "UIKit.framework" ]
57 } 57 }
58 58
59 source_set("eg_tests") { 59 source_set("eg_tests") {
60 testonly = true 60 testonly = true
61 sources = [ 61 sources = [
62 "alert_coordinator_egtest.mm", 62 "alert_coordinator_egtest.mm",
63 ] 63 ]
64 deps = [ 64 deps = [
65 ":alert_coordinator",
65 "//base", 66 "//base",
66 "//components/strings", 67 "//components/strings",
67 "//ios/chrome/browser/ui/alert_coordinator",
68 "//ios/chrome/test/earl_grey:test_support", 68 "//ios/chrome/test/earl_grey:test_support",
69 "//ios/testing/earl_grey:earl_grey_support", 69 "//ios/testing/earl_grey:earl_grey_support",
70 "//ios/third_party/earl_grey", 70 "//ios/third_party/earl_grey",
71 ] 71 ]
72 libs = [ 72 libs = [
73 "UIKit.framework", 73 "UIKit.framework",
74 "XCTest.framework", 74 "XCTest.framework",
75 ] 75 ]
76 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698