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 bundle_data("resources") { | 5 bundle_data("resources") { |
6 sources = [ | 6 sources = [ |
7 "resources/collapse.png", | 7 "resources/collapse.png", |
8 "resources/collapse@2x.png", | 8 "resources/collapse@2x.png", |
9 "resources/collapse@3x.png", | 9 "resources/collapse@3x.png", |
10 "resources/collapse_incognito.png", | 10 "resources/collapse_incognito.png", |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "//ios/chrome/browser/ui/tools_menu", | 195 "//ios/chrome/browser/ui/tools_menu", |
196 "//ios/chrome/test/app:test_support", | 196 "//ios/chrome/test/app:test_support", |
197 "//ios/chrome/test/earl_grey:test_support", | 197 "//ios/chrome/test/earl_grey:test_support", |
198 "//ios/testing/earl_grey:earl_grey_support", | 198 "//ios/testing/earl_grey:earl_grey_support", |
199 "//ios/third_party/earl_grey", | 199 "//ios/third_party/earl_grey", |
200 "//ios/web:test_support", | 200 "//ios/web:test_support", |
201 "//ui/base", | 201 "//ui/base", |
202 ] | 202 ] |
203 libs = [ "XCTest.framework" ] | 203 libs = [ "XCTest.framework" ] |
204 } | 204 } |
205 | |
206 # Clean Skeleton Targets | |
207 source_set("toolbar_clean_skeleton") { | |
208 sources = [ | |
209 "toolbar_coordinator.h", | |
210 "toolbar_coordinator.mm", | |
211 "toolbar_view_controller.h", | |
212 "toolbar_view_controller.mm", | |
213 ] | |
214 | |
215 configs += [ "//build/config/compiler:enable_arc" ] | |
216 | |
217 deps = [ | |
218 "//base", | |
219 "//ios/chrome/browser:browser_clean_skeleton", | |
220 "//ios/chrome/browser/ui/actions", | |
221 "//ios/chrome/browser/ui/animators", | |
222 "//ios/chrome/browser/ui/commands:commands_clean_skeleton", | |
223 "//ios/chrome/browser/ui/tools", | |
224 "//ios/web", | |
225 ] | |
226 } | |
OLD | NEW |