| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "public/v8_platform.h", | 49 "public/v8_platform.h", |
| 50 "public/wrapper_info.h", | 50 "public/wrapper_info.h", |
| 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", |
| 60 "v8_initializer.h", |
| 59 "v8_platform.cc", | 61 "v8_platform.cc", |
| 60 "wrappable.cc", | 62 "wrappable.cc", |
| 61 "wrappable.h", | 63 "wrappable.h", |
| 62 "wrapper_info.cc", | 64 "wrapper_info.cc", |
| 63 ] | 65 ] |
| 64 | 66 |
| 65 defines = [ "GIN_IMPLEMENTATION" ] | 67 defines = [ "GIN_IMPLEMENTATION" ] |
| 66 | 68 |
| 67 public_deps = [ | 69 public_deps = [ |
| 68 "//base", | 70 "//base", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "test/run_js_tests.cc", | 159 "test/run_js_tests.cc", |
| 158 "wrappable_unittest.cc", | 160 "wrappable_unittest.cc", |
| 159 ] | 161 ] |
| 160 | 162 |
| 161 deps = [ | 163 deps = [ |
| 162 ":gin_test", | 164 ":gin_test", |
| 163 "//base/test:test_support", | 165 "//base/test:test_support", |
| 164 "//v8", | 166 "//v8", |
| 165 ] | 167 ] |
| 166 } | 168 } |
| OLD | NEW |