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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("gin") { | 8 component("gin") { |
9 sources = [ | 9 sources = [ |
10 "arguments.cc", | 10 "arguments.cc", |
11 "arguments.h", | 11 "arguments.h", |
12 "array_buffer.cc", | 12 "array_buffer.cc", |
13 "array_buffer.h", | 13 "array_buffer.h", |
14 "context_holder.cc", | 14 "context_holder.cc", |
15 "converter.cc", | 15 "converter.cc", |
16 "converter.h", | 16 "converter.h", |
17 "debug_impl.cc", | 17 "debug_impl.cc", |
18 "debug_impl.h", | 18 "debug_impl.h", |
19 "dictionary.cc", | 19 "dictionary.cc", |
20 "dictionary.h", | 20 "dictionary.h", |
21 "function_template.cc", | 21 "function_template.cc", |
22 "function_template.h", | 22 "function_template.h", |
23 "gin_export.h", | 23 "gin_export.h", |
| 24 "gin_features.cc", |
24 "handle.h", | 25 "handle.h", |
25 "interceptor.cc", | 26 "interceptor.cc", |
26 "interceptor.h", | 27 "interceptor.h", |
27 "isolate_holder.cc", | 28 "isolate_holder.cc", |
28 "modules/console.cc", | 29 "modules/console.cc", |
29 "modules/console.h", | 30 "modules/console.h", |
30 "modules/file_module_provider.cc", | 31 "modules/file_module_provider.cc", |
31 "modules/file_module_provider.h", | 32 "modules/file_module_provider.h", |
32 "modules/module_registry.cc", | 33 "modules/module_registry.cc", |
33 "modules/module_registry.h", | 34 "modules/module_registry.h", |
34 "modules/module_registry_observer.h", | 35 "modules/module_registry_observer.h", |
35 "modules/module_runner_delegate.cc", | 36 "modules/module_runner_delegate.cc", |
36 "modules/module_runner_delegate.h", | 37 "modules/module_runner_delegate.h", |
37 "modules/timer.cc", | 38 "modules/timer.cc", |
38 "modules/timer.h", | 39 "modules/timer.h", |
39 "object_template_builder.cc", | 40 "object_template_builder.cc", |
40 "object_template_builder.h", | 41 "object_template_builder.h", |
41 "per_context_data.cc", | 42 "per_context_data.cc", |
42 "per_context_data.h", | 43 "per_context_data.h", |
43 "per_isolate_data.cc", | 44 "per_isolate_data.cc", |
44 "per_isolate_data.h", | 45 "per_isolate_data.h", |
45 "public/context_holder.h", | 46 "public/context_holder.h", |
46 "public/debug.h", | 47 "public/debug.h", |
47 "public/gin_embedders.h", | 48 "public/gin_embedders.h", |
| 49 "public/gin_features.h", |
48 "public/isolate_holder.h", | 50 "public/isolate_holder.h", |
49 "public/v8_idle_task_runner.h", | 51 "public/v8_idle_task_runner.h", |
50 "public/v8_platform.h", | 52 "public/v8_platform.h", |
51 "public/wrapper_info.h", | 53 "public/wrapper_info.h", |
52 "run_microtasks_observer.cc", | 54 "run_microtasks_observer.cc", |
53 "run_microtasks_observer.h", | 55 "run_microtasks_observer.h", |
54 "runner.cc", | 56 "runner.cc", |
55 "runner.h", | 57 "runner.h", |
56 "shell_runner.cc", | 58 "shell_runner.cc", |
57 "shell_runner.h", | 59 "shell_runner.h", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "test/expect.js", | 197 "test/expect.js", |
196 "test/file_unittests.js", | 198 "test/file_unittests.js", |
197 "test/gtest_unittests.js", | 199 "test/gtest_unittests.js", |
198 "../OWNERS", | 200 "../OWNERS", |
199 ] | 201 ] |
200 | 202 |
201 data_deps = [ | 203 data_deps = [ |
202 ":gin_shell", | 204 ":gin_shell", |
203 ] | 205 ] |
204 } | 206 } |
OLD | NEW |