summaryrefslogtreecommitdiffstats
path: root/gin/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'gin/BUILD.gn')
-rw-r--r--gin/BUILD.gn10
1 files changed, 6 insertions, 4 deletions
diff --git a/gin/BUILD.gn b/gin/BUILD.gn
index ab768ff..793ee3d 100644
--- a/gin/BUILD.gn
+++ b/gin/BUILD.gn
@@ -76,10 +76,8 @@ component("gin") {
"//base/third_party/dynamic_annotations",
]
if (v8_use_external_startup_data && is_win) {
- deps += [
- ":gin_v8_snapshot_fingerprint",
- "//crypto:crypto",
- ]
+ public_deps += [ ":gin_v8_snapshot_fingerprint" ]
+ deps += [ "//crypto:crypto" ]
sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ]
defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ]
}
@@ -108,6 +106,10 @@ if (v8_use_external_startup_data) {
outputs = [
output_file,
]
+
+ deps = [
+ "//v8",
+ ]
}
}