OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
6 import("//mojo/mojo_application_package.gni") | 6 import("//mojo/mojo_application_package.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/mojo/src/mojo/public/mojo.gni") | 8 import("//third_party/mojo/src/mojo/public/mojo.gni") |
9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 "$root_out_dir/icudtl.dat", | 190 "$root_out_dir/icudtl.dat", |
191 "$root_out_dir/ui_test.pak", | 191 "$root_out_dir/ui_test.pak", |
192 "$target_gen_dir/html_viewer_resources.pak", | 192 "$target_gen_dir/html_viewer_resources.pak", |
193 ] | 193 ] |
194 | 194 |
195 if (v8_use_external_startup_data) { | 195 if (v8_use_external_startup_data) { |
196 resources += [ | 196 resources += [ |
197 "$root_build_dir/natives_blob.bin", | 197 "$root_build_dir/natives_blob.bin", |
198 "$root_build_dir/snapshot_blob.bin", | 198 "$root_build_dir/snapshot_blob.bin", |
199 ] | 199 ] |
| 200 deps += [ "//gin" ] |
200 } | 201 } |
201 } | 202 } |
202 | 203 |
203 test("tests") { | 204 test("tests") { |
204 output_name = "html_viewer_unittests" | 205 output_name = "html_viewer_unittests" |
205 sources = [ | 206 sources = [ |
206 "ax_provider_impl_unittest.cc", | 207 "ax_provider_impl_unittest.cc", |
207 "discardable_memory_allocator_unittest.cc", | 208 "discardable_memory_allocator_unittest.cc", |
208 ] | 209 ] |
209 deps = [ | 210 deps = [ |
(...skipping 14 matching lines...) Expand all Loading... |
224 "//base", | 225 "//base", |
225 "//mojo/application", | 226 "//mojo/application", |
226 "//mojo/application:test_support", | 227 "//mojo/application:test_support", |
227 "//net:test_support", | 228 "//net:test_support", |
228 "//testing/gtest", | 229 "//testing/gtest", |
229 "//third_party/mojo_services/src/accessibility/public/interfaces", | 230 "//third_party/mojo_services/src/accessibility/public/interfaces", |
230 ] | 231 ] |
231 | 232 |
232 data_deps = [ ":html_viewer" ] | 233 data_deps = [ ":html_viewer" ] |
233 } | 234 } |
OLD | NEW |