Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: gin/BUILD.gn

Issue 2680653002: [gin] Removing file validation. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | gin/fingerprint/fingerprint_v8_snapshot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/BUILD.gn
diff --git a/gin/BUILD.gn b/gin/BUILD.gn
index 5f0dc5d1a61c74769f38dd6914290e856c5095aa..6ad0eac4e6feb284727c631c5be655d56c2c4214 100644
--- a/gin/BUILD.gn
+++ b/gin/BUILD.gn
@@ -103,11 +103,6 @@ component("gin") {
"//base/third_party/dynamic_annotations",
"//crypto",
]
- if (v8_use_external_startup_data && is_win) {
- public_deps += [ ":gin_v8_snapshot_fingerprint" ]
- sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ]
- defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ]
- }
if (is_mac) {
libs = [ "CoreFoundation.framework" ]
@@ -116,36 +111,6 @@ component("gin") {
configs += [ "//v8:external_startup_data" ]
}
-if (v8_use_external_startup_data) {
- action("gin_v8_snapshot_fingerprint") {
- script = "//gin/fingerprint/fingerprint_v8_snapshot.py"
-
- snapshot_file = "$root_out_dir/snapshot_blob.bin"
- natives_file = "$root_out_dir/natives_blob.bin"
- output_file = "$target_gen_dir/v8_snapshot_fingerprint.cc"
-
- args = [
- "--snapshot_file",
- rebase_path(snapshot_file, root_build_dir),
- "--natives_file",
- rebase_path(natives_file, root_build_dir),
- "--output_file",
- rebase_path(output_file, root_build_dir),
- ]
- inputs = [
- snapshot_file,
- natives_file,
- ]
- outputs = [
- output_file,
- ]
-
- deps = [
- "//v8",
- ]
- }
-}
-
executable("gin_shell") {
sources = [
"shell/gin_main.cc",
« no previous file with comments | « BUILD.gn ('k') | gin/fingerprint/fingerprint_v8_snapshot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698