| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 source_set("resource_macros") { | 128 source_set("resource_macros") { |
| 129 sources = [ | 129 sources = [ |
| 130 "toolbar_resource_macros.h", | 130 "toolbar_resource_macros.h", |
| 131 ] | 131 ] |
| 132 deps = [ | 132 deps = [ |
| 133 "//ios/chrome/app/theme", | 133 "//ios/chrome/app/theme", |
| 134 ] | 134 ] |
| 135 } | 135 } |
| 136 | 136 |
| 137 source_set("test_support") { | 137 source_set("test_support") { |
| 138 configs += [ "//build/config/compiler:enable_arc" ] |
| 138 testonly = true | 139 testonly = true |
| 139 sources = [ | 140 sources = [ |
| 140 "test_toolbar_model_ios.h", | 141 "test_toolbar_model_ios.h", |
| 141 "test_toolbar_model_ios.mm", | 142 "test_toolbar_model_ios.mm", |
| 142 "web_toolbar_controller_private.h", | 143 "web_toolbar_controller_private.h", |
| 143 ] | 144 ] |
| 144 deps = [ | 145 deps = [ |
| 145 ":toolbar", | 146 ":toolbar", |
| 146 "//base", | 147 "//base", |
| 147 "//components/toolbar", | 148 "//components/toolbar", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |