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 component("gin") { | 5 component("gin") { |
6 sources = [ | 6 sources = [ |
7 "arguments.cc", | 7 "arguments.cc", |
8 "arguments.h", | 8 "arguments.h", |
9 "array_buffer.cc", | 9 "array_buffer.cc", |
10 "array_buffer.h", | 10 "array_buffer.h", |
11 "context_holder.cc", | 11 "context_holder.cc", |
12 "converter.cc", | 12 "converter.cc", |
13 "converter.h", | 13 "converter.h", |
| 14 "debug_impl.cc", |
| 15 "debug_impl.h", |
14 "dictionary.cc", | 16 "dictionary.cc", |
15 "dictionary.h", | 17 "dictionary.h", |
16 "function_template.cc", | 18 "function_template.cc", |
17 "function_template.h", | 19 "function_template.h", |
18 "gin_export.h", | 20 "gin_export.h", |
19 "handle.h", | 21 "handle.h", |
20 "interceptor.cc", | 22 "interceptor.cc", |
21 "interceptor.h", | 23 "interceptor.h", |
22 "isolate_holder.cc", | 24 "isolate_holder.cc", |
23 "modules/console.cc", | 25 "modules/console.cc", |
24 "modules/console.h", | 26 "modules/console.h", |
25 "modules/file_module_provider.cc", | 27 "modules/file_module_provider.cc", |
26 "modules/file_module_provider.h", | 28 "modules/file_module_provider.h", |
27 "modules/module_registry.cc", | 29 "modules/module_registry.cc", |
28 "modules/module_registry.h", | 30 "modules/module_registry.h", |
29 "modules/module_registry_observer.h", | 31 "modules/module_registry_observer.h", |
30 "modules/module_runner_delegate.cc", | 32 "modules/module_runner_delegate.cc", |
31 "modules/module_runner_delegate.h", | 33 "modules/module_runner_delegate.h", |
32 "modules/timer.cc", | 34 "modules/timer.cc", |
33 "modules/timer.h", | 35 "modules/timer.h", |
34 "object_template_builder.cc", | 36 "object_template_builder.cc", |
35 "object_template_builder.h", | 37 "object_template_builder.h", |
36 "per_context_data.cc", | 38 "per_context_data.cc", |
37 "per_context_data.h", | 39 "per_context_data.h", |
38 "per_isolate_data.cc", | 40 "per_isolate_data.cc", |
39 "per_isolate_data.h", | 41 "per_isolate_data.h", |
40 "public/context_holder.h", | 42 "public/context_holder.h", |
| 43 "public/debug.h", |
41 "public/gin_embedders.h", | 44 "public/gin_embedders.h", |
42 "public/isolate_holder.h", | 45 "public/isolate_holder.h", |
43 "public/v8_platform.h", | 46 "public/v8_platform.h", |
44 "public/wrapper_info.h", | 47 "public/wrapper_info.h", |
45 "runner.cc", | 48 "runner.cc", |
46 "runner.h", | 49 "runner.h", |
47 "shell_runner.cc", | 50 "shell_runner.cc", |
48 "shell_runner.h", | 51 "shell_runner.h", |
49 "try_catch.cc", | 52 "try_catch.cc", |
50 "try_catch.h", | 53 "try_catch.h", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "test/run_js_tests.cc", | 123 "test/run_js_tests.cc", |
121 "wrappable_unittest.cc", | 124 "wrappable_unittest.cc", |
122 ] | 125 ] |
123 | 126 |
124 deps = [ | 127 deps = [ |
125 ":gin_test", | 128 ":gin_test", |
126 "//base/test:test_support", | 129 "//base/test:test_support", |
127 "//v8", | 130 "//v8", |
128 ] | 131 ] |
129 } | 132 } |
OLD | NEW |