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/tabswitcher_full_history.png", | 7 "resources/tabswitcher_full_history.png", |
8 "resources/tabswitcher_full_history@2x.png", | 8 "resources/tabswitcher_full_history@2x.png", |
9 "resources/tabswitcher_full_history@3x.png", | 9 "resources/tabswitcher_full_history@3x.png", |
10 "resources/tabswitcher_incognito.png", | 10 "resources/tabswitcher_incognito.png", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "resources/tabswitcher_tablet@2x.png", | 44 "resources/tabswitcher_tablet@2x.png", |
45 "resources/tabswitcher_tablet@3x.png", | 45 "resources/tabswitcher_tablet@3x.png", |
46 ] | 46 ] |
47 outputs = [ | 47 outputs = [ |
48 "{{bundle_resources_dir}}/{{source_file_part}}", | 48 "{{bundle_resources_dir}}/{{source_file_part}}", |
49 ] | 49 ] |
50 } | 50 } |
51 | 51 |
52 source_set("tab_switcher") { | 52 source_set("tab_switcher") { |
53 sources = [ | 53 sources = [ |
54 "session_changes.h", | |
55 "session_changes.mm", | |
56 "tab_model_snapshot.h", | 54 "tab_model_snapshot.h", |
57 "tab_model_snapshot.mm", | 55 "tab_model_snapshot.mm", |
58 "tab_switcher.h", | 56 "tab_switcher.h", |
59 "tab_switcher_button.h", | 57 "tab_switcher_button.h", |
60 "tab_switcher_button.mm", | 58 "tab_switcher_button.mm", |
61 "tab_switcher_cache.h", | 59 "tab_switcher_cache.h", |
62 "tab_switcher_cache.mm", | 60 "tab_switcher_cache.mm", |
63 "tab_switcher_controller.h", | 61 "tab_switcher_controller.h", |
64 "tab_switcher_controller.mm", | 62 "tab_switcher_controller.mm", |
65 "tab_switcher_header_cell.h", | 63 "tab_switcher_header_cell.h", |
66 "tab_switcher_header_cell.mm", | 64 "tab_switcher_header_cell.mm", |
67 "tab_switcher_header_view.h", | 65 "tab_switcher_header_view.h", |
68 "tab_switcher_header_view.mm", | 66 "tab_switcher_header_view.mm", |
69 "tab_switcher_model.h", | 67 "tab_switcher_model.h", |
70 "tab_switcher_model.mm", | 68 "tab_switcher_model.mm", |
71 "tab_switcher_model_private.h", | 69 "tab_switcher_model_private.h", |
72 "tab_switcher_panel_cell.h", | 70 "tab_switcher_panel_cell.h", |
73 "tab_switcher_panel_cell.mm", | 71 "tab_switcher_panel_cell.mm", |
74 "tab_switcher_panel_collection_view_layout.h", | 72 "tab_switcher_panel_collection_view_layout.h", |
75 "tab_switcher_panel_collection_view_layout.mm", | 73 "tab_switcher_panel_collection_view_layout.mm", |
76 "tab_switcher_panel_controller.h", | 74 "tab_switcher_panel_controller.h", |
77 "tab_switcher_panel_controller.mm", | 75 "tab_switcher_panel_controller.mm", |
78 "tab_switcher_panel_overlay_view.h", | 76 "tab_switcher_panel_overlay_view.h", |
79 "tab_switcher_panel_overlay_view.mm", | 77 "tab_switcher_panel_overlay_view.mm", |
80 "tab_switcher_panel_view.h", | 78 "tab_switcher_panel_view.h", |
81 "tab_switcher_panel_view.mm", | 79 "tab_switcher_panel_view.mm", |
82 "tab_switcher_session_cell_data.h", | 80 "tab_switcher_session_cell_data.h", |
83 "tab_switcher_session_cell_data.mm", | 81 "tab_switcher_session_cell_data.mm", |
| 82 "tab_switcher_session_changes.h", |
| 83 "tab_switcher_session_changes.mm", |
84 "tab_switcher_tab_strip_placeholder_view.h", | 84 "tab_switcher_tab_strip_placeholder_view.h", |
85 "tab_switcher_tab_strip_placeholder_view.mm", | 85 "tab_switcher_tab_strip_placeholder_view.mm", |
86 "tab_switcher_transition_context.h", | 86 "tab_switcher_transition_context.h", |
87 "tab_switcher_transition_context.mm", | 87 "tab_switcher_transition_context.mm", |
88 "tab_switcher_view.h", | 88 "tab_switcher_view.h", |
89 "tab_switcher_view.mm", | 89 "tab_switcher_view.mm", |
90 ] | 90 ] |
91 deps = [ | 91 deps = [ |
92 ":utils", | 92 ":utils", |
93 "//base", | 93 "//base", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "//ios/chrome/test/app:test_support", | 192 "//ios/chrome/test/app:test_support", |
193 "//ios/chrome/test/earl_grey:test_support", | 193 "//ios/chrome/test/earl_grey:test_support", |
194 "//ios/third_party/earl_grey", | 194 "//ios/third_party/earl_grey", |
195 "//ui/base", | 195 "//ui/base", |
196 ] | 196 ] |
197 libs = [ | 197 libs = [ |
198 "UIKit.framework", | 198 "UIKit.framework", |
199 "XCTest.framework", | 199 "XCTest.framework", |
200 ] | 200 ] |
201 } | 201 } |
OLD | NEW |