OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
| 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") |
| 10 } |
| 11 |
8 component("gin") { | 12 component("gin") { |
9 sources = [ | 13 sources = [ |
10 "arguments.cc", | 14 "arguments.cc", |
11 "arguments.h", | 15 "arguments.h", |
12 "array_buffer.cc", | 16 "array_buffer.cc", |
13 "array_buffer.h", | 17 "array_buffer.h", |
14 "context_holder.cc", | 18 "context_holder.cc", |
15 "converter.cc", | 19 "converter.cc", |
16 "converter.h", | 20 "converter.h", |
17 "debug_impl.cc", | 21 "debug_impl.cc", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 if (v8_use_external_startup_data && is_win) { | 90 if (v8_use_external_startup_data && is_win) { |
87 public_deps += [ ":gin_v8_snapshot_fingerprint" ] | 91 public_deps += [ ":gin_v8_snapshot_fingerprint" ] |
88 deps += [ "//crypto:crypto" ] | 92 deps += [ "//crypto:crypto" ] |
89 sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ] | 93 sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ] |
90 defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ] | 94 defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ] |
91 } | 95 } |
92 | 96 |
93 configs += [ "//v8:external_startup_data" ] | 97 configs += [ "//v8:external_startup_data" ] |
94 } | 98 } |
95 | 99 |
| 100 if (is_android) { |
| 101 android_assets("v8_snapshot_assets") { |
| 102 if (v8_use_external_startup_data) { |
| 103 deps = [ |
| 104 "//v8", |
| 105 ] |
| 106 sources = [ |
| 107 "$root_out_dir/natives_blob.bin", |
| 108 "$root_out_dir/snapshot_blob.bin", |
| 109 ] |
| 110 } |
| 111 enable_compression = false |
| 112 } |
| 113 } |
| 114 |
96 if (v8_use_external_startup_data) { | 115 if (v8_use_external_startup_data) { |
97 action("gin_v8_snapshot_fingerprint") { | 116 action("gin_v8_snapshot_fingerprint") { |
98 script = "//gin/fingerprint/fingerprint_v8_snapshot.py" | 117 script = "//gin/fingerprint/fingerprint_v8_snapshot.py" |
99 | 118 |
100 snapshot_file = "$root_out_dir/snapshot_blob.bin" | 119 snapshot_file = "$root_out_dir/snapshot_blob.bin" |
101 natives_file = "$root_out_dir/natives_blob.bin" | 120 natives_file = "$root_out_dir/natives_blob.bin" |
102 output_file = "$target_gen_dir/v8_snapshot_fingerprint.cc" | 121 output_file = "$target_gen_dir/v8_snapshot_fingerprint.cc" |
103 | 122 |
104 args = [ | 123 args = [ |
105 "--snapshot_file", | 124 "--snapshot_file", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 "v8_isolate_memory_dump_provider_unittest.cc", | 194 "v8_isolate_memory_dump_provider_unittest.cc", |
176 "wrappable_unittest.cc", | 195 "wrappable_unittest.cc", |
177 ] | 196 ] |
178 | 197 |
179 deps = [ | 198 deps = [ |
180 ":gin_test", | 199 ":gin_test", |
181 "//base/test:test_support", | 200 "//base/test:test_support", |
182 "//v8", | 201 "//v8", |
183 ] | 202 ] |
184 } | 203 } |
OLD | NEW |