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/module_args/v8.gni") | 5 import("//build/module_args/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", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "run_microtasks_observer.cc", | 51 "run_microtasks_observer.cc", |
52 "run_microtasks_observer.h", | 52 "run_microtasks_observer.h", |
53 "runner.cc", | 53 "runner.cc", |
54 "runner.h", | 54 "runner.h", |
55 "shell_runner.cc", | 55 "shell_runner.cc", |
56 "shell_runner.h", | 56 "shell_runner.h", |
57 "try_catch.cc", | 57 "try_catch.cc", |
58 "try_catch.h", | 58 "try_catch.h", |
59 "v8_initializer.cc", | 59 "v8_initializer.cc", |
60 "v8_initializer.h", | 60 "v8_initializer.h", |
| 61 "v8_isolate_memory_dump_provider.cc", |
| 62 "v8_isolate_memory_dump_provider.h", |
61 "v8_platform.cc", | 63 "v8_platform.cc", |
62 "wrappable.cc", | 64 "wrappable.cc", |
63 "wrappable.h", | 65 "wrappable.h", |
64 "wrapper_info.cc", | 66 "wrapper_info.cc", |
65 ] | 67 ] |
66 | 68 |
67 defines = [ "GIN_IMPLEMENTATION" ] | 69 defines = [ "GIN_IMPLEMENTATION" ] |
68 | 70 |
69 public_deps = [ | 71 public_deps = [ |
70 "//base", | 72 "//base", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 "test/run_js_tests.cc", | 161 "test/run_js_tests.cc", |
160 "wrappable_unittest.cc", | 162 "wrappable_unittest.cc", |
161 ] | 163 ] |
162 | 164 |
163 deps = [ | 165 deps = [ |
164 ":gin_test", | 166 ":gin_test", |
165 "//base/test:test_support", | 167 "//base/test:test_support", |
166 "//v8", | 168 "//v8", |
167 ] | 169 ] |
168 } | 170 } |
OLD | NEW |