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

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

Issue 2835413003: [ObjC ARC] Converts ios/chrome/browser/ui/toolbar:unit_tests to ARC. (Closed)
Patch Set: Created 3 years, 7 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 deps = [ 144 deps = [
145 ":toolbar", 145 ":toolbar",
146 "//base", 146 "//base",
147 "//components/toolbar", 147 "//components/toolbar",
148 "//components/toolbar:test_support", 148 "//components/toolbar:test_support",
149 "//ios/chrome/browser/tabs", 149 "//ios/chrome/browser/tabs",
150 ] 150 ]
151 } 151 }
152 152
153 source_set("unit_tests") { 153 source_set("unit_tests") {
154 configs += [ "//build/config/compiler:enable_arc" ]
154 testonly = true 155 testonly = true
155 sources = [ 156 sources = [
156 "toolbar_controller_unittest.mm", 157 "toolbar_controller_unittest.mm",
157 "toolbar_model_impl_ios_unittest.mm", 158 "toolbar_model_impl_ios_unittest.mm",
158 "web_toolbar_controller_unittest.mm", 159 "web_toolbar_controller_unittest.mm",
159 ] 160 ]
160 deps = [ 161 deps = [
161 ":test_support", 162 ":test_support",
162 ":toolbar", 163 ":toolbar",
163 "//base", 164 "//base",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "//ios/chrome/browser/ui/tools_menu", 200 "//ios/chrome/browser/ui/tools_menu",
200 "//ios/chrome/test/app:test_support", 201 "//ios/chrome/test/app:test_support",
201 "//ios/chrome/test/earl_grey:test_support", 202 "//ios/chrome/test/earl_grey:test_support",
202 "//ios/testing/earl_grey:earl_grey_support", 203 "//ios/testing/earl_grey:earl_grey_support",
203 "//ios/third_party/earl_grey", 204 "//ios/third_party/earl_grey",
204 "//ios/web:test_support", 205 "//ios/web:test_support",
205 "//ui/base", 206 "//ui/base",
206 ] 207 ]
207 libs = [ "XCTest.framework" ] 208 libs = [ "XCTest.framework" ]
208 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698