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