| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 | 6 |
| 7 source_set("ui") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "UIView+SizeClassSupport.h", | 9 "UIView+SizeClassSupport.h", |
| 10 "UIView+SizeClassSupport.mm", | 10 "UIView+SizeClassSupport.mm", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//third_party/ocmock", | 75 "//third_party/ocmock", |
| 76 "//url", | 76 "//url", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 bundle_data_xib("native_content_controller_test_xib") { | 80 bundle_data_xib("native_content_controller_test_xib") { |
| 81 visibility = [ ":unit_tests" ] | 81 visibility = [ ":unit_tests" ] |
| 82 testonly = true | 82 testonly = true |
| 83 source = "native_content_controller_test.xib" | 83 source = "native_content_controller_test.xib" |
| 84 } | 84 } |
| 85 |
| 86 bundle_data("resources") { |
| 87 sources = [ |
| 88 "resources/custom_row_voice.png", |
| 89 "resources/custom_row_voice@2x.png", |
| 90 "resources/custom_row_voice@2x~ipad.png", |
| 91 "resources/custom_row_voice@3x.png", |
| 92 "resources/custom_row_voice_pressed.png", |
| 93 "resources/custom_row_voice_pressed@2x.png", |
| 94 "resources/custom_row_voice_pressed@2x~ipad.png", |
| 95 "resources/custom_row_voice_pressed@3x.png", |
| 96 "resources/custom_row_voice_pressed~ipad.png", |
| 97 "resources/custom_row_voice~ipad.png", |
| 98 "resources/default_favicon.png", |
| 99 "resources/default_favicon@2x.png", |
| 100 "resources/default_favicon@3x.png", |
| 101 "resources/default_favicon_incognito.png", |
| 102 "resources/default_favicon_incognito@2x.png", |
| 103 "resources/default_favicon_incognito@3x.png", |
| 104 "resources/keyboard_bg_portrait_tablet.png", |
| 105 "resources/keyboard_button.png", |
| 106 "resources/keyboard_button@2x.png", |
| 107 "resources/keyboard_button@2x~ipad.png", |
| 108 "resources/keyboard_button@3x.png", |
| 109 "resources/keyboard_button~ipad.png", |
| 110 ] |
| 111 outputs = [ |
| 112 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 113 ] |
| 114 } |
| OLD | NEW |