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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 deps = [ | 70 deps = [ |
71 ":native_content_controller_test_xib", | 71 ":native_content_controller_test_xib", |
72 ":ui", | 72 ":ui", |
73 "//base", | 73 "//base", |
74 "//testing/gtest", | 74 "//testing/gtest", |
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_ib_file("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 | 85 |
86 bundle_data("resources") { | 86 bundle_data("resources") { |
87 sources = [ | 87 sources = [ |
88 "resources/custom_row_voice.png", | 88 "resources/custom_row_voice.png", |
89 "resources/custom_row_voice@2x.png", | 89 "resources/custom_row_voice@2x.png", |
90 "resources/custom_row_voice@2x~ipad.png", | 90 "resources/custom_row_voice@2x~ipad.png", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 "//components/resources/terms/terms_tr.html", | 148 "//components/resources/terms/terms_tr.html", |
149 "//components/resources/terms/terms_uk.html", | 149 "//components/resources/terms/terms_uk.html", |
150 "//components/resources/terms/terms_vi.html", | 150 "//components/resources/terms/terms_vi.html", |
151 "//components/resources/terms/terms_zh-CN.html", | 151 "//components/resources/terms/terms_zh-CN.html", |
152 "//components/resources/terms/terms_zh-TW.html", | 152 "//components/resources/terms/terms_zh-TW.html", |
153 ] | 153 ] |
154 outputs = [ | 154 outputs = [ |
155 "{{bundle_resources_dir}}/{{source_file_part}}", | 155 "{{bundle_resources_dir}}/{{source_file_part}}", |
156 ] | 156 ] |
157 } | 157 } |
OLD | NEW |