| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("tabs") { | 44 source_set("tabs") { |
| 45 sources = [ | 45 sources = [ |
| 46 "tab_strip_controller+tab_switcher_animation.h", | 46 "tab_strip_controller+tab_switcher_animation.h", |
| 47 "tab_strip_controller.h", | 47 "tab_strip_controller.h", |
| 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_util.h", | |
| 53 "tab_util.mm", | |
| 54 "tab_view.h", | 52 "tab_view.h", |
| 55 "tab_view.mm", | 53 "tab_view.mm", |
| 56 "target_frame_cache.h", | 54 "target_frame_cache.h", |
| 57 "target_frame_cache.mm", | 55 "target_frame_cache.mm", |
| 58 ] | 56 ] |
| 59 deps = [ | 57 deps = [ |
| 60 "//base", | 58 "//base", |
| 61 "//base:i18n", | 59 "//base:i18n", |
| 62 "//ios/chrome/app/strings", | 60 "//ios/chrome/app/strings", |
| 63 "//ios/chrome/browser", | 61 "//ios/chrome/browser", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//ios/chrome/browser", | 103 "//ios/chrome/browser", |
| 106 "//ios/chrome/browser/ui", | 104 "//ios/chrome/browser/ui", |
| 107 "//ios/chrome/browser/ui/tabs", | 105 "//ios/chrome/browser/ui/tabs", |
| 108 "//ios/chrome/test/app:test_support", | 106 "//ios/chrome/test/app:test_support", |
| 109 "//ios/chrome/test/earl_grey:test_support", | 107 "//ios/chrome/test/earl_grey:test_support", |
| 110 "//ios/third_party/earl_grey", | 108 "//ios/third_party/earl_grey", |
| 111 "//ui/base", | 109 "//ui/base", |
| 112 ] | 110 ] |
| 113 libs = [ "XCTest.framework" ] | 111 libs = [ "XCTest.framework" ] |
| 114 } | 112 } |
| OLD | NEW |