| 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' ], | |
| 111 }, | 87 }, |
| 112 { | 88 { |
| 113 'target_name': 'gin_shell', | 89 'target_name': 'gin_shell', |
| 114 'type': 'executable', | 90 'type': 'executable', |
| 115 'dependencies': [ | 91 'dependencies': [ |
| 116 '../base/base.gyp:base', | 92 '../base/base.gyp:base', |
| 117 '../base/base.gyp:base_i18n', | 93 '../base/base.gyp:base_i18n', |
| 118 '../v8/src/v8.gyp:v8', | 94 '../v8/src/v8.gyp:v8', |
| 119 'gin', | 95 'gin', |
| 120 ], | 96 ], |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 '../build/isolate.gypi', | 165 '../build/isolate.gypi', |
| 190 ], | 166 ], |
| 191 'sources': [ | 167 'sources': [ |
| 192 'gin_unittests.isolate', | 168 'gin_unittests.isolate', |
| 193 ], | 169 ], |
| 194 }, | 170 }, |
| 195 ], | 171 ], |
| 196 }], | 172 }], |
| 197 ], | 173 ], |
| 198 } | 174 } |
| OLD | NEW |