| 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",
|
|
|