| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "tab_strip_controller.mm", | 48 "tab_strip_controller.mm", |
| 49 "tab_strip_controller_private.h", | 49 "tab_strip_controller_private.h", |
| 50 "tab_strip_view.h", | 50 "tab_strip_view.h", |
| 51 "tab_strip_view.mm", | 51 "tab_strip_view.mm", |
| 52 "tab_view.h", | 52 "tab_view.h", |
| 53 "tab_view.mm", | 53 "tab_view.mm", |
| 54 "target_frame_cache.h", | 54 "target_frame_cache.h", |
| 55 "target_frame_cache.mm", | 55 "target_frame_cache.mm", |
| 56 ] | 56 ] |
| 57 deps = [ | 57 deps = [ |
| 58 ":resources", |
| 58 "//base", | 59 "//base", |
| 59 "//base:i18n", | 60 "//base:i18n", |
| 60 "//ios/chrome/app/strings", | 61 "//ios/chrome/app/strings", |
| 61 "//ios/chrome/browser", | 62 "//ios/chrome/browser", |
| 62 "//ios/chrome/browser/browser_state", | 63 "//ios/chrome/browser/browser_state", |
| 63 "//ios/chrome/browser/tabs", | 64 "//ios/chrome/browser/tabs", |
| 64 "//ios/chrome/browser/ui", | 65 "//ios/chrome/browser/ui", |
| 65 "//ios/chrome/browser/ui/colors", | 66 "//ios/chrome/browser/ui/colors", |
| 66 "//ios/chrome/browser/ui/commands", | 67 "//ios/chrome/browser/ui/commands", |
| 67 "//ios/chrome/browser/ui/tabs:resources", | |
| 68 "//ios/chrome/browser/ui/util", | 68 "//ios/chrome/browser/ui/util", |
| 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 92 "//third_party/ocmock", | 92 "//third_party/ocmock", |
| 93 ] | 93 ] |
| 94 } | 94 } |
| 95 | 95 |
| 96 source_set("eg_tests") { | 96 source_set("eg_tests") { |
| 97 testonly = true | 97 testonly = true |
| 98 sources = [ | 98 sources = [ |
| 99 "tab_strip_egtest.mm", | 99 "tab_strip_egtest.mm", |
| 100 ] | 100 ] |
| 101 deps = [ | 101 deps = [ |
| 102 ":tabs", |
| 102 "//ios/chrome/app/strings", | 103 "//ios/chrome/app/strings", |
| 103 "//ios/chrome/browser", | 104 "//ios/chrome/browser", |
| 104 "//ios/chrome/browser/ui", | 105 "//ios/chrome/browser/ui", |
| 105 "//ios/chrome/browser/ui/tabs", | |
| 106 "//ios/chrome/test/app:test_support", | 106 "//ios/chrome/test/app:test_support", |
| 107 "//ios/chrome/test/earl_grey:test_support", | 107 "//ios/chrome/test/earl_grey:test_support", |
| 108 "//ios/third_party/earl_grey", | 108 "//ios/third_party/earl_grey", |
| 109 "//ui/base", | 109 "//ui/base", |
| 110 ] | 110 ] |
| 111 libs = [ "XCTest.framework" ] | 111 libs = [ "XCTest.framework" ] |
| 112 } | 112 } |
| OLD | NEW |