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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "resources/tabswitcher_tablet.png", | 43 "resources/tabswitcher_tablet.png", |
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 configs += [ "//build/config/compiler:enable_arc" ] |
53 sources = [ | 54 sources = [ |
54 "tab_model_snapshot.h", | 55 "tab_model_snapshot.h", |
55 "tab_model_snapshot.mm", | 56 "tab_model_snapshot.mm", |
56 "tab_switcher.h", | 57 "tab_switcher.h", |
57 "tab_switcher_button.h", | 58 "tab_switcher_button.h", |
58 "tab_switcher_button.mm", | 59 "tab_switcher_button.mm", |
59 "tab_switcher_cache.h", | 60 "tab_switcher_cache.h", |
60 "tab_switcher_cache.mm", | 61 "tab_switcher_cache.mm", |
61 "tab_switcher_controller.h", | 62 "tab_switcher_controller.h", |
62 "tab_switcher_controller.mm", | 63 "tab_switcher_controller.mm", |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 "//ios/chrome/test/app:test_support", | 195 "//ios/chrome/test/app:test_support", |
195 "//ios/chrome/test/earl_grey:test_support", | 196 "//ios/chrome/test/earl_grey:test_support", |
196 "//ios/third_party/earl_grey", | 197 "//ios/third_party/earl_grey", |
197 "//ui/base", | 198 "//ui/base", |
198 ] | 199 ] |
199 libs = [ | 200 libs = [ |
200 "UIKit.framework", | 201 "UIKit.framework", |
201 "XCTest.framework", | 202 "XCTest.framework", |
202 ] | 203 ] |
203 } | 204 } |
OLD | NEW |