| 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/tabstrip_background_tab@2x~ipad.png", | 7 "resources/tabstrip_background_tab@2x~ipad.png", |
| 8 "resources/tabstrip_background_tab~ipad.png", | 8 "resources/tabstrip_background_tab~ipad.png", |
| 9 "resources/tabstrip_foreground_tab@2x~ipad.png", | 9 "resources/tabstrip_foreground_tab@2x~ipad.png", |
| 10 "resources/tabstrip_foreground_tab~ipad.png", | 10 "resources/tabstrip_foreground_tab~ipad.png", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "//ios/third_party/material_components_ios", | 69 "//ios/third_party/material_components_ios", |
| 70 "//ios/web", | 70 "//ios/web", |
| 71 "//third_party/google_toolbox_for_mac", | 71 "//third_party/google_toolbox_for_mac", |
| 72 "//ui/base", | 72 "//ui/base", |
| 73 "//ui/gfx", | 73 "//ui/gfx", |
| 74 ] | 74 ] |
| 75 libs = [ "UIKit.framework" ] | 75 libs = [ "UIKit.framework" ] |
| 76 } | 76 } |
| 77 | 77 |
| 78 source_set("unit_tests") { | 78 source_set("unit_tests") { |
| 79 configs += [ "//build/config/compiler:enable_arc" ] |
| 79 testonly = true | 80 testonly = true |
| 80 sources = [ | 81 sources = [ |
| 81 "tab_strip_controller_unittest.mm", | 82 "tab_strip_controller_unittest.mm", |
| 82 ] | 83 ] |
| 83 deps = [ | 84 deps = [ |
| 84 ":tabs", | 85 ":tabs", |
| 85 "//base", | 86 "//base", |
| 86 "//ios/chrome/browser/browser_state:test_support", | 87 "//ios/chrome/browser/browser_state:test_support", |
| 87 "//ios/chrome/browser/sessions:test_support", | 88 "//ios/chrome/browser/sessions:test_support", |
| 88 "//ios/chrome/browser/tabs", | 89 "//ios/chrome/browser/tabs", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 104 "//ios/chrome/app/strings", | 105 "//ios/chrome/app/strings", |
| 105 "//ios/chrome/browser", | 106 "//ios/chrome/browser", |
| 106 "//ios/chrome/browser/ui", | 107 "//ios/chrome/browser/ui", |
| 107 "//ios/chrome/test/app:test_support", | 108 "//ios/chrome/test/app:test_support", |
| 108 "//ios/chrome/test/earl_grey:test_support", | 109 "//ios/chrome/test/earl_grey:test_support", |
| 109 "//ios/third_party/earl_grey", | 110 "//ios/third_party/earl_grey", |
| 110 "//ui/base", | 111 "//ui/base", |
| 111 ] | 112 ] |
| 112 libs = [ "XCTest.framework" ] | 113 libs = [ "XCTest.framework" ] |
| 113 } | 114 } |
| OLD | NEW |