OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'gin_gen_path': '<(SHARED_INTERMEDIATE_DIR)/gin/', | 8 'gin_gen_path': '<(SHARED_INTERMEDIATE_DIR)/gin/', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'try_catch.h', | 77 'try_catch.h', |
78 'v8_initializer.h', | 78 'v8_initializer.h', |
79 'v8_initializer.cc', | 79 'v8_initializer.cc', |
80 'v8_isolate_memory_dump_provider.cc', | 80 'v8_isolate_memory_dump_provider.cc', |
81 'v8_isolate_memory_dump_provider.h', | 81 'v8_isolate_memory_dump_provider.h', |
82 'v8_platform.cc', | 82 'v8_platform.cc', |
83 'wrappable.cc', | 83 'wrappable.cc', |
84 'wrappable.h', | 84 'wrappable.h', |
85 'wrapper_info.cc', | 85 'wrapper_info.cc', |
86 ], | 86 ], |
| 87 'conditions': [ |
| 88 ['v8_use_external_startup_data==1 and OS=="win"', { |
| 89 'dependencies': [ |
| 90 'gin_v8_snapshot_fingerprint', |
| 91 '../crypto/crypto.gyp:crypto', |
| 92 ], |
| 93 'sources': [ |
| 94 '<(gin_gen_path)/v8_snapshot_fingerprint.cc', |
| 95 ], |
| 96 'defines': [ |
| 97 'V8_VERIFY_EXTERNAL_STARTUP_DATA', |
| 98 ] |
| 99 }], |
| 100 ], |
| 101 }, |
| 102 { |
| 103 'target_name': 'gin_v8_snapshot_fingerprint', |
| 104 'type': 'none', |
| 105 'variables': { |
| 106 'snapshot_file': '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 107 'natives_file': '<(PRODUCT_DIR)/natives_blob.bin', |
| 108 'output_file': '<(gin_gen_path)/v8_snapshot_fingerprint.cc', |
| 109 }, |
| 110 'includes': [ '../gin/fingerprint/fingerprint_v8_snapshot.gypi' ], |
87 }, | 111 }, |
88 { | 112 { |
89 'target_name': 'gin_shell', | 113 'target_name': 'gin_shell', |
90 'type': 'executable', | 114 'type': 'executable', |
91 'dependencies': [ | 115 'dependencies': [ |
92 '../base/base.gyp:base', | 116 '../base/base.gyp:base', |
93 '../base/base.gyp:base_i18n', | 117 '../base/base.gyp:base_i18n', |
94 '../v8/src/v8.gyp:v8', | 118 '../v8/src/v8.gyp:v8', |
95 'gin', | 119 'gin', |
96 ], | 120 ], |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 '../build/isolate.gypi', | 189 '../build/isolate.gypi', |
166 ], | 190 ], |
167 'sources': [ | 191 'sources': [ |
168 'gin_unittests.isolate', | 192 'gin_unittests.isolate', |
169 ], | 193 ], |
170 }, | 194 }, |
171 ], | 195 ], |
172 }], | 196 }], |
173 ], | 197 ], |
174 } | 198 } |
OLD | NEW |