| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "//ios/chrome/browser/tabs", | 119 "//ios/chrome/browser/tabs", |
| 120 "//ios/chrome/browser/ui", | 120 "//ios/chrome/browser/ui", |
| 121 "//ios/chrome/test:test_support", | 121 "//ios/chrome/test:test_support", |
| 122 "//ios/testing:ocmock_support", | 122 "//ios/testing:ocmock_support", |
| 123 "//testing/gtest", | 123 "//testing/gtest", |
| 124 "//third_party/ocmock", | 124 "//third_party/ocmock", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| 127 | 127 |
| 128 source_set("eg_tests") { | 128 source_set("eg_tests") { |
| 129 configs += [ "//build/config/compiler:enable_arc" ] |
| 129 testonly = true | 130 testonly = true |
| 130 sources = [ | 131 sources = [ |
| 131 "stack_view_egtest.mm", | 132 "stack_view_egtest.mm", |
| 132 ] | 133 ] |
| 133 deps = [ | 134 deps = [ |
| 134 ":stack_view", | 135 ":stack_view", |
| 135 "//base", | 136 "//base", |
| 136 "//base/test:test_support", | 137 "//base/test:test_support", |
| 137 "//ios/chrome/browser", | 138 "//ios/chrome/browser", |
| 138 "//ios/chrome/browser/browser_state", | 139 "//ios/chrome/browser/browser_state", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 159 "//ios/chrome/browser/snapshots", | 160 "//ios/chrome/browser/snapshots", |
| 160 "//ios/chrome/browser/tabs", | 161 "//ios/chrome/browser/tabs", |
| 161 "//ios/chrome/browser/test:perf_test_support", | 162 "//ios/chrome/browser/test:perf_test_support", |
| 162 "//ios/chrome/browser/ui", | 163 "//ios/chrome/browser/ui", |
| 163 "//ios/chrome/browser/ui:ui_internal", | 164 "//ios/chrome/browser/ui:ui_internal", |
| 164 "//ios/web", | 165 "//ios/web", |
| 165 "//net", | 166 "//net", |
| 166 ] | 167 ] |
| 167 libs = [ "UIKit.framework" ] | 168 libs = [ "UIKit.framework" ] |
| 168 } | 169 } |
| OLD | NEW |