| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "tab_strip_controller.h", | 43 "tab_strip_controller.h", |
| 44 "tab_strip_controller.mm", | 44 "tab_strip_controller.mm", |
| 45 "tab_strip_controller_private.h", | 45 "tab_strip_controller_private.h", |
| 46 "tab_strip_view.h", | 46 "tab_strip_view.h", |
| 47 "tab_strip_view.mm", | 47 "tab_strip_view.mm", |
| 48 "tab_view.h", | 48 "tab_view.h", |
| 49 "tab_view.mm", | 49 "tab_view.mm", |
| 50 "target_frame_cache.h", | 50 "target_frame_cache.h", |
| 51 "target_frame_cache.mm", | 51 "target_frame_cache.mm", |
| 52 ] | 52 ] |
| 53 public_deps = [ |
| 54 "//ios/chrome/browser/tabs", |
| 55 ] |
| 53 deps = [ | 56 deps = [ |
| 54 ":resources", | 57 ":resources", |
| 55 "//base", | 58 "//base", |
| 56 "//base:i18n", | 59 "//base:i18n", |
| 57 "//ios/chrome/app/strings", | 60 "//ios/chrome/app/strings", |
| 58 "//ios/chrome/browser", | 61 "//ios/chrome/browser", |
| 59 "//ios/chrome/browser/browser_state", | 62 "//ios/chrome/browser/browser_state", |
| 60 "//ios/chrome/browser/tabs", | |
| 61 "//ios/chrome/browser/ui", | 63 "//ios/chrome/browser/ui", |
| 62 "//ios/chrome/browser/ui/colors", | 64 "//ios/chrome/browser/ui/colors", |
| 63 "//ios/chrome/browser/ui/commands", | 65 "//ios/chrome/browser/ui/commands", |
| 64 "//ios/chrome/browser/ui/util", | 66 "//ios/chrome/browser/ui/util", |
| 65 "//ios/third_party/material_components_ios", | 67 "//ios/third_party/material_components_ios", |
| 66 "//ios/web", | 68 "//ios/web", |
| 67 "//third_party/google_toolbox_for_mac", | 69 "//third_party/google_toolbox_for_mac", |
| 68 "//ui/base", | 70 "//ui/base", |
| 69 "//ui/gfx", | 71 "//ui/gfx", |
| 70 ] | 72 ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 101 "//ios/chrome/app/strings", | 103 "//ios/chrome/app/strings", |
| 102 "//ios/chrome/browser", | 104 "//ios/chrome/browser", |
| 103 "//ios/chrome/browser/ui", | 105 "//ios/chrome/browser/ui", |
| 104 "//ios/chrome/test/app:test_support", | 106 "//ios/chrome/test/app:test_support", |
| 105 "//ios/chrome/test/earl_grey:test_support", | 107 "//ios/chrome/test/earl_grey:test_support", |
| 106 "//ios/third_party/earl_grey", | 108 "//ios/third_party/earl_grey", |
| 107 "//ui/base", | 109 "//ui/base", |
| 108 ] | 110 ] |
| 109 libs = [ "XCTest.framework" ] | 111 libs = [ "XCTest.framework" ] |
| 110 } | 112 } |
| OLD | NEW |