| 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_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 clear_dir = true | 296 clear_dir = true |
| 297 deps = [ | 297 deps = [ |
| 298 ":pak", | 298 ":pak", |
| 299 "//gin", | 299 "//gin", |
| 300 "//third_party/icu:icudata", | 300 "//third_party/icu:icudata", |
| 301 ] | 301 ] |
| 302 dest = html_viewer_unittests_assets | 302 dest = html_viewer_unittests_assets |
| 303 sources = [ | 303 sources = [ |
| 304 "$root_build_dir/html_viewer.pak", | 304 "$root_build_dir/html_viewer.pak", |
| 305 "$root_build_dir/icudtl.dat", | 305 "$root_build_dir/icudtl.dat", |
| 306 "$root_out_dir/natives_blob.bin", | |
| 307 "$root_out_dir/snapshot_blob.bin", | |
| 308 ] | 306 ] |
| 307 renaming_sources = v8_external_startup_data_renaming_sources |
| 308 renaming_destinations = v8_external_startup_data_renaming_destinations |
| 309 } | 309 } |
| 310 | 310 |
| 311 generate_mojo_shell_assets_list("build_unittest_assets") { | 311 generate_mojo_shell_assets_list("build_unittest_assets") { |
| 312 deps = [ | 312 deps = [ |
| 313 ":copy_unittest_assets", | 313 ":copy_unittest_assets", |
| 314 ] | 314 ] |
| 315 dir = html_viewer_unittests_assets | 315 dir = html_viewer_unittests_assets |
| 316 } | 316 } |
| 317 } | 317 } |
| 318 | 318 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 ] | 373 ] |
| 374 | 374 |
| 375 data_deps = [ | 375 data_deps = [ |
| 376 ":html_viewer", | 376 ":html_viewer", |
| 377 ] | 377 ] |
| 378 | 378 |
| 379 if (is_linux && !is_android) { | 379 if (is_linux && !is_android) { |
| 380 data_deps += [ "//components/font_service" ] | 380 data_deps += [ "//components/font_service" ] |
| 381 } | 381 } |
| 382 } | 382 } |
| OLD | NEW |