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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 11 matching lines...) Expand all Loading... |
22 'GIN_IMPLEMENTATION', | 22 'GIN_IMPLEMENTATION', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 'arguments.cc', | 25 'arguments.cc', |
26 'arguments.h', | 26 'arguments.h', |
27 'array_buffer.cc', | 27 'array_buffer.cc', |
28 'array_buffer.h', | 28 'array_buffer.h', |
29 'context_holder.cc', | 29 'context_holder.cc', |
30 'converter.cc', | 30 'converter.cc', |
31 'converter.h', | 31 'converter.h', |
| 32 'default_runner.cc', |
| 33 'default_runner.h', |
32 'dictionary.cc', | 34 'dictionary.cc', |
33 'dictionary.h', | 35 'dictionary.h', |
34 'function_template.cc', | 36 'function_template.cc', |
35 'function_template.h', | 37 'function_template.h', |
36 'gin_export.h', | 38 'gin_export.h', |
37 'handle.h', | 39 'handle.h', |
38 'isolate_holder.cc', | 40 'isolate_holder.cc', |
39 'modules/console.cc', | 41 'modules/console.cc', |
40 'modules/console.h', | 42 'modules/console.h', |
41 'modules/file_module_provider.cc', | 43 'modules/file_module_provider.cc', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 { | 109 { |
108 'target_name': 'gin_unittests', | 110 'target_name': 'gin_unittests', |
109 'type': 'executable', | 111 'type': 'executable', |
110 'dependencies': [ | 112 'dependencies': [ |
111 '../base/base.gyp:run_all_unittests', | 113 '../base/base.gyp:run_all_unittests', |
112 '../v8/tools/gyp/v8.gyp:v8', | 114 '../v8/tools/gyp/v8.gyp:v8', |
113 'gin_test', | 115 'gin_test', |
114 ], | 116 ], |
115 'sources': [ | 117 'sources': [ |
116 'converter_unittest.cc', | 118 'converter_unittest.cc', |
| 119 'default_runner_unittest.cc', |
117 'modules/timer_unittest.cc', | 120 'modules/timer_unittest.cc', |
118 'test/run_all_unittests.cc', | 121 'test/run_all_unittests.cc', |
119 'test/run_js_tests.cc', | 122 'test/run_js_tests.cc', |
120 'runner_unittest.cc', | |
121 'wrappable_unittest.cc', | 123 'wrappable_unittest.cc', |
122 ], | 124 ], |
123 }, | 125 }, |
124 ], | 126 ], |
125 } | 127 } |
OLD | NEW |