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

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

Issue 2592983003: [Clean Skeleton] Migrate code to clean/ (Closed)
Patch Set: Rebased 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/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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "//ios/chrome/browser/ui/tools_menu", 197 "//ios/chrome/browser/ui/tools_menu",
198 "//ios/chrome/test/app:test_support", 198 "//ios/chrome/test/app:test_support",
199 "//ios/chrome/test/earl_grey:test_support", 199 "//ios/chrome/test/earl_grey:test_support",
200 "//ios/testing/earl_grey:earl_grey_support", 200 "//ios/testing/earl_grey:earl_grey_support",
201 "//ios/third_party/earl_grey", 201 "//ios/third_party/earl_grey",
202 "//ios/web:test_support", 202 "//ios/web:test_support",
203 "//ui/base", 203 "//ui/base",
204 ] 204 ]
205 libs = [ "XCTest.framework" ] 205 libs = [ "XCTest.framework" ]
206 } 206 }
207
208 # Clean Skeleton Targets
209 source_set("toolbar_clean_skeleton") {
210 sources = [
211 "toolbar_coordinator.h",
212 "toolbar_coordinator.mm",
213 "toolbar_view_controller.h",
214 "toolbar_view_controller.mm",
215 ]
216
217 configs += [ "//build/config/compiler:enable_arc" ]
218
219 deps = [
220 "//base",
221 "//ios/chrome/browser:browser_clean_skeleton",
222 "//ios/chrome/browser/ui/actions",
223 "//ios/chrome/browser/ui/animators",
224 "//ios/chrome/browser/ui/commands:commands_clean_skeleton",
225 "//ios/chrome/browser/ui/tools",
226 "//ios/web",
227 ]
228 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/tab_grid/tab_grid_view_controller.mm ('k') | ios/chrome/browser/ui/toolbar/toolbar_coordinator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698