| 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 30 matching lines...) Expand all Loading... |
| 41 "per_context_data.cc", | 41 "per_context_data.cc", |
| 42 "per_context_data.h", | 42 "per_context_data.h", |
| 43 "per_isolate_data.cc", | 43 "per_isolate_data.cc", |
| 44 "per_isolate_data.h", | 44 "per_isolate_data.h", |
| 45 "public/context_holder.h", | 45 "public/context_holder.h", |
| 46 "public/debug.h", | 46 "public/debug.h", |
| 47 "public/gin_embedders.h", | 47 "public/gin_embedders.h", |
| 48 "public/isolate_holder.h", | 48 "public/isolate_holder.h", |
| 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", |
| 52 "run_microtasks_observer.h", |
| 51 "runner.cc", | 53 "runner.cc", |
| 52 "runner.h", | 54 "runner.h", |
| 53 "run_microtasks_observer.cc", | |
| 54 "run_microtasks_observer.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_platform.cc", | 59 "v8_platform.cc", |
| 60 "wrappable.cc", | 60 "wrappable.cc", |
| 61 "wrappable.h", | 61 "wrappable.h", |
| 62 "wrapper_info.cc", | 62 "wrapper_info.cc", |
| 63 ] | 63 ] |
| 64 | 64 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ] | 144 ] |
| 145 } | 145 } |
| 146 | 146 |
| 147 test("gin_unittests") { | 147 test("gin_unittests") { |
| 148 sources = [ | 148 sources = [ |
| 149 "converter_unittest.cc", | 149 "converter_unittest.cc", |
| 150 "interceptor_unittest.cc", | 150 "interceptor_unittest.cc", |
| 151 "modules/module_registry_unittest.cc", | 151 "modules/module_registry_unittest.cc", |
| 152 "modules/timer_unittest.cc", | 152 "modules/timer_unittest.cc", |
| 153 "per_context_data_unittest.cc", | 153 "per_context_data_unittest.cc", |
| 154 "shell/gin_shell_unittest.cc", |
| 154 "shell_runner_unittest.cc", | 155 "shell_runner_unittest.cc", |
| 155 "shell/gin_shell_unittest.cc", | |
| 156 "test/run_all_unittests.cc", | 156 "test/run_all_unittests.cc", |
| 157 "test/run_js_tests.cc", | 157 "test/run_js_tests.cc", |
| 158 "wrappable_unittest.cc", | 158 "wrappable_unittest.cc", |
| 159 ] | 159 ] |
| 160 | 160 |
| 161 deps = [ | 161 deps = [ |
| 162 ":gin_test", | 162 ":gin_test", |
| 163 "//base/test:test_support", | 163 "//base/test:test_support", |
| 164 "//v8", | 164 "//v8", |
| 165 ] | 165 ] |
| 166 } | 166 } |
| OLD | NEW |