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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'public/v8_platform.h', | 66 'public/v8_platform.h', |
67 'public/wrapper_info.h', | 67 'public/wrapper_info.h', |
68 'runner.cc', | 68 'runner.cc', |
69 'runner.h', | 69 'runner.h', |
70 'run_microtasks_observer.cc', | 70 'run_microtasks_observer.cc', |
71 'run_microtasks_observer.h', | 71 'run_microtasks_observer.h', |
72 'shell_runner.cc', | 72 'shell_runner.cc', |
73 'shell_runner.h', | 73 'shell_runner.h', |
74 'try_catch.cc', | 74 'try_catch.cc', |
75 'try_catch.h', | 75 'try_catch.h', |
| 76 'v8_initializer.h', |
| 77 'v8_initializer.cc', |
76 'v8_platform.cc', | 78 'v8_platform.cc', |
77 'wrappable.cc', | 79 'wrappable.cc', |
78 'wrappable.h', | 80 'wrappable.h', |
79 'wrapper_info.cc', | 81 'wrapper_info.cc', |
80 ], | 82 ], |
81 'conditions': [ | 83 'conditions': [ |
82 ['v8_use_external_startup_data==1 and OS=="win"', { | 84 ['v8_use_external_startup_data==1 and OS=="win"', { |
83 'dependencies': [ | 85 'dependencies': [ |
84 'gin_v8_snapshot_fingerprint', | 86 'gin_v8_snapshot_fingerprint', |
85 '../crypto/crypto.gyp:crypto', | 87 '../crypto/crypto.gyp:crypto', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 'per_context_data_unittest.cc', | 164 'per_context_data_unittest.cc', |
163 'shell_runner_unittest.cc', | 165 'shell_runner_unittest.cc', |
164 'shell/gin_shell_unittest.cc', | 166 'shell/gin_shell_unittest.cc', |
165 'test/run_all_unittests.cc', | 167 'test/run_all_unittests.cc', |
166 'test/run_js_tests.cc', | 168 'test/run_js_tests.cc', |
167 'wrappable_unittest.cc', | 169 'wrappable_unittest.cc', |
168 ], | 170 ], |
169 }, | 171 }, |
170 ], | 172 ], |
171 } | 173 } |
OLD | NEW |