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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//v8/gni/v8.gni") | 6 import("//v8/gni/v8.gni") |
7 | 7 |
8 # This is depended upon from the browser DLL on Windows, where V8 is not used, | 8 # This is depended upon from the browser DLL on Windows, where V8 is not used, |
9 # but features are enabled. This cannot depend on V8. | 9 # but features are enabled. This cannot depend on V8. |
10 component("gin_features") { | 10 component("gin_features") { |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 component("gin") { | 26 component("gin") { |
27 sources = [ | 27 sources = [ |
28 "arguments.cc", | 28 "arguments.cc", |
29 "arguments.h", | 29 "arguments.h", |
30 "array_buffer.cc", | 30 "array_buffer.cc", |
31 "array_buffer.h", | 31 "array_buffer.h", |
32 "context_holder.cc", | 32 "context_holder.cc", |
33 "converter.cc", | 33 "converter.cc", |
34 "converter.h", | 34 "converter.h", |
| 35 "data_object_builder.cc", |
| 36 "data_object_builder.h", |
35 "debug_impl.cc", | 37 "debug_impl.cc", |
36 "debug_impl.h", | 38 "debug_impl.h", |
37 "dictionary.cc", | 39 "dictionary.cc", |
38 "dictionary.h", | 40 "dictionary.h", |
39 "function_template.cc", | 41 "function_template.cc", |
40 "function_template.h", | 42 "function_template.h", |
41 "gin_export.h", | 43 "gin_export.h", |
42 "handle.h", | 44 "handle.h", |
43 "interceptor.cc", | 45 "interceptor.cc", |
44 "interceptor.h", | 46 "interceptor.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 "//v8", | 156 "//v8", |
155 ] | 157 ] |
156 | 158 |
157 configs += [ "//v8:external_startup_data" ] | 159 configs += [ "//v8:external_startup_data" ] |
158 } | 160 } |
159 | 161 |
160 test("gin_unittests") { | 162 test("gin_unittests") { |
161 sources = [ | 163 sources = [ |
162 "arguments_unittest.cc", | 164 "arguments_unittest.cc", |
163 "converter_unittest.cc", | 165 "converter_unittest.cc", |
| 166 "data_object_builder_unittest.cc", |
164 "interceptor_unittest.cc", | 167 "interceptor_unittest.cc", |
165 "modules/module_registry_unittest.cc", | 168 "modules/module_registry_unittest.cc", |
166 "modules/timer_unittest.cc", | 169 "modules/timer_unittest.cc", |
167 "per_context_data_unittest.cc", | 170 "per_context_data_unittest.cc", |
168 "shell/gin_shell_unittest.cc", | 171 "shell/gin_shell_unittest.cc", |
169 "shell_runner_unittest.cc", | 172 "shell_runner_unittest.cc", |
170 "test/run_all_unittests.cc", | 173 "test/run_all_unittests.cc", |
171 "test/run_js_tests.cc", | 174 "test/run_js_tests.cc", |
172 "v8_isolate_memory_dump_provider_unittest.cc", | 175 "v8_isolate_memory_dump_provider_unittest.cc", |
173 "v8_platform_unittest.cc", | 176 "v8_platform_unittest.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
188 "shell/hello_world.js", | 191 "shell/hello_world.js", |
189 "test/file_unittests.js", | 192 "test/file_unittests.js", |
190 "test/gtest_unittests.js", | 193 "test/gtest_unittests.js", |
191 "../OWNERS", | 194 "../OWNERS", |
192 ] | 195 ] |
193 | 196 |
194 data_deps = [ | 197 data_deps = [ |
195 ":gin_shell", | 198 ":gin_shell", |
196 ] | 199 ] |
197 } | 200 } |
OLD | NEW |