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

Side by Side Diff: ios/chrome/browser/translate/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("translate") { 5 source_set("translate") {
6 sources = [ 6 sources = [
7 "after_translate_infobar_controller.h", 7 "after_translate_infobar_controller.h",
8 "after_translate_infobar_controller.mm", 8 "after_translate_infobar_controller.mm",
9 "before_translate_infobar_controller.h", 9 "before_translate_infobar_controller.h",
10 "before_translate_infobar_controller.mm", 10 "before_translate_infobar_controller.mm",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//url", 66 "//url",
67 ] 67 ]
68 } 68 }
69 69
70 source_set("eg_tests") { 70 source_set("eg_tests") {
71 testonly = true 71 testonly = true
72 sources = [ 72 sources = [
73 "translate_egtest.mm", 73 "translate_egtest.mm",
74 ] 74 ]
75 deps = [ 75 deps = [
76 ":translate",
76 "//base", 77 "//base",
77 "//components/strings", 78 "//components/strings",
78 "//components/translate/core/browser", 79 "//components/translate/core/browser",
79 "//components/translate/core/common", 80 "//components/translate/core/common",
80 "//components/translate/ios/browser", 81 "//components/translate/ios/browser",
81 "//ios/chrome/browser/browser_state", 82 "//ios/chrome/browser/browser_state",
82 "//ios/chrome/browser/translate",
83 "//ios/chrome/test/app:test_support", 83 "//ios/chrome/test/app:test_support",
84 "//ios/chrome/test/earl_grey:test_support", 84 "//ios/chrome/test/earl_grey:test_support",
85 "//ios/testing:ios_test_support", 85 "//ios/testing:ios_test_support",
86 "//ios/third_party/earl_grey", 86 "//ios/third_party/earl_grey",
87 "//ios/web:test_support", 87 "//ios/web:test_support",
88 "//net", 88 "//net",
89 "//ui/base", 89 "//ui/base",
90 ] 90 ]
91 libs = [ "XCTest.framework" ] 91 libs = [ "XCTest.framework" ]
92 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698