| 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 20 matching lines...) Expand all Loading... |
| 31 "resources/tabstrip_toggle_button_gradient@2x~ipad.png", | 31 "resources/tabstrip_toggle_button_gradient@2x~ipad.png", |
| 32 "resources/tabstrip_toggle_button_gradient@3x~ipad.png", | 32 "resources/tabstrip_toggle_button_gradient@3x~ipad.png", |
| 33 "resources/tabstrip_toggle_button_gradient~ipad.png", | 33 "resources/tabstrip_toggle_button_gradient~ipad.png", |
| 34 ] | 34 ] |
| 35 outputs = [ | 35 outputs = [ |
| 36 "{{bundle_resources_dir}}/{{source_file_part}}", | 36 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("tabs") { | 40 source_set("tabs") { |
| 41 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 sources = [ | 42 sources = [ |
| 42 "tab_strip_controller+tab_switcher_animation.h", | 43 "tab_strip_controller+tab_switcher_animation.h", |
| 43 "tab_strip_controller.h", | 44 "tab_strip_controller.h", |
| 44 "tab_strip_controller.mm", | 45 "tab_strip_controller.mm", |
| 45 "tab_strip_controller_private.h", | 46 "tab_strip_controller_private.h", |
| 46 "tab_strip_view.h", | 47 "tab_strip_view.h", |
| 47 "tab_strip_view.mm", | 48 "tab_strip_view.mm", |
| 48 "tab_view.h", | 49 "tab_view.h", |
| 49 "tab_view.mm", | 50 "tab_view.mm", |
| 50 "target_frame_cache.h", | 51 "target_frame_cache.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "//ios/chrome/app/strings", | 104 "//ios/chrome/app/strings", |
| 104 "//ios/chrome/browser", | 105 "//ios/chrome/browser", |
| 105 "//ios/chrome/browser/ui", | 106 "//ios/chrome/browser/ui", |
| 106 "//ios/chrome/test/app:test_support", | 107 "//ios/chrome/test/app:test_support", |
| 107 "//ios/chrome/test/earl_grey:test_support", | 108 "//ios/chrome/test/earl_grey:test_support", |
| 108 "//ios/third_party/earl_grey", | 109 "//ios/third_party/earl_grey", |
| 109 "//ui/base", | 110 "//ui/base", |
| 110 ] | 111 ] |
| 111 libs = [ "XCTest.framework" ] | 112 libs = [ "XCTest.framework" ] |
| 112 } | 113 } |
| OLD | NEW |