summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Eisinger <jochen@chromium.org>2015-12-10 11:45:30 +0100
committerJochen Eisinger <jochen@chromium.org>2015-12-10 11:45:30 +0100
commit94edf0c37d1ee6a03697375b9e227071ff2ee69d (patch)
tree7199fd74afb3609bfa8656f495654f204557c470
parentd9324d8f7345d4546c06c4a9d6cd497b0f7f3ad2 (diff)
downloadpdfium-chromium/2588.tar.xz
Fix BUILD.gn to load the correct V8 snapshot configurationchromium/2589chromium/2588
BUG=pdfium:299 R=kcc@chromium.org Review URL: https://codereview.chromium.org/1520443002 .
-rw-r--r--BUILD.gn4
-rw-r--r--samples/BUILD.gn2
2 files changed, 6 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index f1583abaf0..3b029b5fb0 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build_overrides/v8.gni")
import("//testing/test.gni")
import("pdfium.gni")
@@ -170,6 +171,7 @@ source_set("test_support") {
"//v8",
"//v8/include",
]
+ configs += [ "//v8:external_startup_data" ]
}
configs += [ ":pdfium_config" ]
}
@@ -688,6 +690,7 @@ static_library("javascript") {
public_deps = [
"//v8",
]
+ configs += [ "//v8:external_startup_data" ]
} else {
sources += [ "fpdfsdk/src/javascript/JS_Runtime_Stub.cpp" ]
}
@@ -780,6 +783,7 @@ test("pdfium_embeddertests") {
"//v8",
"//v8/include",
]
+ configs += [ "//v8:external_startup_data" ]
}
configs += [ ":pdfium_config" ]
}
diff --git a/samples/BUILD.gn b/samples/BUILD.gn
index a66178a0cd..a214f1bb90 100644
--- a/samples/BUILD.gn
+++ b/samples/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/sanitizers/sanitizers.gni")
+import("//build_overrides/v8.gni")
import("../pdfium.gni")
group("samples") {
@@ -48,6 +49,7 @@ executable("pdfium_test") {
"//v8",
"//v8/include",
]
+ configs += [ "//v8:external_startup_data" ]
}
configs += [ ":pdfium_samples_config" ]
}