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

Side by Side Diff: ios/chrome/browser/ui/find_bar/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 bundle_data("resources") { 5 bundle_data("resources") {
6 sources = [ 6 sources = [
7 "resources/find_bg@2x~ipad.png", 7 "resources/find_bg@2x~ipad.png",
8 "resources/find_bg~ipad.png", 8 "resources/find_bg~ipad.png",
9 "resources/find_close.png", 9 "resources/find_close.png",
10 "resources/find_close@2x.png", 10 "resources/find_close@2x.png",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 source_set("find_bar") { 60 source_set("find_bar") {
61 sources = [ 61 sources = [
62 "find_bar_controller_ios.h", 62 "find_bar_controller_ios.h",
63 "find_bar_controller_ios.mm", 63 "find_bar_controller_ios.mm",
64 "find_bar_touch_forwarding_view.h", 64 "find_bar_touch_forwarding_view.h",
65 "find_bar_touch_forwarding_view.mm", 65 "find_bar_touch_forwarding_view.mm",
66 "find_bar_view.h", 66 "find_bar_view.h",
67 "find_bar_view.mm", 67 "find_bar_view.mm",
68 ] 68 ]
69 deps = [ 69 deps = [
70 ":resources",
70 "//base", 71 "//base",
71 "//base:i18n", 72 "//base:i18n",
72 "//components/strings", 73 "//components/strings",
73 "//ios/chrome/app/strings", 74 "//ios/chrome/app/strings",
74 "//ios/chrome/browser/find_in_page", 75 "//ios/chrome/browser/find_in_page",
75 "//ios/chrome/browser/ui", 76 "//ios/chrome/browser/ui",
76 "//ios/chrome/browser/ui/commands", 77 "//ios/chrome/browser/ui/commands",
77 "//ios/chrome/browser/ui/find_bar:resources",
78 "//ios/third_party/material_components_ios", 78 "//ios/third_party/material_components_ios",
79 "//ui/base", 79 "//ui/base",
80 "//ui/gfx", 80 "//ui/gfx",
81 ] 81 ]
82 libs = [ "UIKit.framework" ] 82 libs = [ "UIKit.framework" ]
83 } 83 }
84 84
85 source_set("eg_tests") { 85 source_set("eg_tests") {
86 testonly = true 86 testonly = true
87 sources = [ 87 sources = [
88 "find_in_page_egtest.mm", 88 "find_in_page_egtest.mm",
89 ] 89 ]
90 deps = [ 90 deps = [
91 ":find_bar",
91 "//base", 92 "//base",
92 "//components/strings", 93 "//components/strings",
93 "//ios/chrome/app/strings", 94 "//ios/chrome/app/strings",
94 "//ios/chrome/browser/find_in_page", 95 "//ios/chrome/browser/find_in_page",
95 "//ios/chrome/browser/ui/find_bar",
96 "//ios/chrome/browser/ui/tools_menu", 96 "//ios/chrome/browser/ui/tools_menu",
97 "//ios/chrome/test/app:test_support", 97 "//ios/chrome/test/app:test_support",
98 "//ios/chrome/test/earl_grey:test_support", 98 "//ios/chrome/test/earl_grey:test_support",
99 "//ios/testing:ios_test_support", 99 "//ios/testing:ios_test_support",
100 "//ios/web:test_support", 100 "//ios/web:test_support",
101 "//ui/base", 101 "//ui/base",
102 ] 102 ]
103 libs = [ "XCTest.framework" ] 103 libs = [ "XCTest.framework" ]
104 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698