| 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/border_frame_bottom.png", | 7 "resources/border_frame_bottom.png", |
| 8 "resources/border_frame_bottom@2x.png", | 8 "resources/border_frame_bottom@2x.png", |
| 9 "resources/border_frame_bottom@3x.png", | 9 "resources/border_frame_bottom@3x.png", |
| 10 "resources/border_frame_incognito_bottom.png", | 10 "resources/border_frame_incognito_bottom.png", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//ios/chrome/browser/ui/tools_menu", | 145 "//ios/chrome/browser/ui/tools_menu", |
| 146 "//ios/chrome/test/app:test_support", | 146 "//ios/chrome/test/app:test_support", |
| 147 "//ios/chrome/test/earl_grey:test_support", | 147 "//ios/chrome/test/earl_grey:test_support", |
| 148 "//ios/testing:ios_test_support", | 148 "//ios/testing:ios_test_support", |
| 149 "//ios/testing/earl_grey:earl_grey_support", | 149 "//ios/testing/earl_grey:earl_grey_support", |
| 150 ] | 150 ] |
| 151 libs = [ "XCTest.framework" ] | 151 libs = [ "XCTest.framework" ] |
| 152 } | 152 } |
| 153 | 153 |
| 154 source_set("perf_tests") { | 154 source_set("perf_tests") { |
| 155 configs += [ "//build/config/compiler:enable_arc" ] |
| 155 testonly = true | 156 testonly = true |
| 156 sources = [ | 157 sources = [ |
| 157 "stack_view_controller_perftest.mm", | 158 "stack_view_controller_perftest.mm", |
| 158 ] | 159 ] |
| 159 deps = [ | 160 deps = [ |
| 160 ":stack_view", | 161 ":stack_view", |
| 161 "//base", | 162 "//base", |
| 162 "//base/test:test_support", | 163 "//base/test:test_support", |
| 163 "//ios/chrome/browser/snapshots", | 164 "//ios/chrome/browser/snapshots", |
| 164 "//ios/chrome/browser/tabs", | 165 "//ios/chrome/browser/tabs", |
| 165 "//ios/chrome/browser/test:perf_test_support", | 166 "//ios/chrome/browser/test:perf_test_support", |
| 166 "//ios/chrome/browser/ui", | 167 "//ios/chrome/browser/ui", |
| 167 "//ios/chrome/browser/ui:ui_internal", | 168 "//ios/chrome/browser/ui:ui_internal", |
| 168 "//ios/web", | 169 "//ios/web", |
| 169 "//net", | 170 "//net", |
| 170 ] | 171 ] |
| 171 libs = [ "UIKit.framework" ] | 172 libs = [ "UIKit.framework" ] |
| 172 } | 173 } |
| OLD | NEW |