diff options
author | baixo <baixo@chromium.org> | 2014-12-04 12:08:38 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-04 20:09:03 +0000 |
commit | 1660022c515b379091f061eaffd7a6c310ca959b (patch) | |
tree | 136194a6a5601fb71ba6c40723af6972440c0c72 /content/test/BUILD.gn | |
parent | ca6988df595e520e353722bbf5361c4dc0d0ee86 (diff) | |
download | chromium_src-1660022c515b379091f061eaffd7a6c310ca959b.zip chromium_src-1660022c515b379091f061eaffd7a6c310ca959b.tar.gz chromium_src-1660022c515b379091f061eaffd7a6c310ca959b.tar.bz2 |
Enable external V8 snapshot on Android through GN.
BUG=421063
Review URL: https://codereview.chromium.org/753103003
Cr-Commit-Position: refs/heads/master@{#306875}
Diffstat (limited to 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index 1aca2e2..4daa94d 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -4,6 +4,7 @@ import("//build/config/features.gni") import("//build/config/ui.gni") +import("//build/module_args/v8.gni") content_tests_gypi_values = exec_script("//build/gypi_to_gn.py", @@ -151,6 +152,9 @@ static_library("test_support") { "test/test_content_client.cc", ] } + if (v8_use_external_startup_data) { + deps += [ "//gin:gin" ] + } } if (!is_ios) { |