| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 } | 487 } |
| 488 | 488 |
| 489 if (is_android) { | 489 if (is_android) { |
| 490 _content_unittests_apk_assets_dir = | 490 _content_unittests_apk_assets_dir = |
| 491 "$root_out_dir/content_unittests_apk/assets" | 491 "$root_out_dir/content_unittests_apk/assets" |
| 492 copy_ex("copy_content_unittests_apk_assets") { | 492 copy_ex("copy_content_unittests_apk_assets") { |
| 493 clear_dir = true | 493 clear_dir = true |
| 494 dest = _content_unittests_apk_assets_dir | 494 dest = _content_unittests_apk_assets_dir |
| 495 | 495 |
| 496 if (v8_use_external_startup_data) { | 496 if (v8_use_external_startup_data) { |
| 497 sources = [ | 497 renaming_sources = v8_external_startup_data_renaming_sources |
| 498 "$root_out_dir/natives_blob.bin", | 498 renaming_destinations = v8_external_startup_data_renaming_destinations |
| 499 "$root_out_dir/snapshot_blob.bin", | |
| 500 ] | |
| 501 deps = [ | 499 deps = [ |
| 502 "//v8", | 500 "//v8", |
| 503 ] | 501 ] |
| 504 } | 502 } |
| 505 } | 503 } |
| 506 } | 504 } |
| 507 | 505 |
| 508 # TODO(GYP): Delete this after we've converted everything to GN. | 506 # TODO(GYP): Delete this after we've converted everything to GN. |
| 509 # The _run targets exist only for compatibility w/ GYP. | 507 # The _run targets exist only for compatibility w/ GYP. |
| 510 group("content_unittests_run") { | 508 group("content_unittests_run") { |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 "//gpu/blink", | 834 "//gpu/blink", |
| 837 "//testing/gtest", | 835 "//testing/gtest", |
| 838 "//third_party/WebKit/public:blink", | 836 "//third_party/WebKit/public:blink", |
| 839 "//ui/base", | 837 "//ui/base", |
| 840 "//ui/gfx", | 838 "//ui/gfx", |
| 841 "//ui/gfx/geometry", | 839 "//ui/gfx/geometry", |
| 842 "//ui/gl", | 840 "//ui/gl", |
| 843 "//ui/gl:test_support", | 841 "//ui/gl:test_support", |
| 844 ] | 842 ] |
| 845 } | 843 } |
| OLD | NEW |