| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//v8/gni/v8.gni") | 6 import("//v8/gni/v8.gni") |
| 7 | 7 |
| 8 # This is depended upon from the browser DLL on Windows, where V8 is not used, | 8 # This is depended upon from the browser DLL on Windows, where V8 is not used, |
| 9 # but features are enabled. This cannot depend on V8. | 9 # but features are enabled. This cannot depend on V8. |
| 10 source_set("gin_features") { | 10 source_set("gin_features") { |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "converter_unittest.cc", | 197 "converter_unittest.cc", |
| 198 "interceptor_unittest.cc", | 198 "interceptor_unittest.cc", |
| 199 "modules/module_registry_unittest.cc", | 199 "modules/module_registry_unittest.cc", |
| 200 "modules/timer_unittest.cc", | 200 "modules/timer_unittest.cc", |
| 201 "per_context_data_unittest.cc", | 201 "per_context_data_unittest.cc", |
| 202 "shell/gin_shell_unittest.cc", | 202 "shell/gin_shell_unittest.cc", |
| 203 "shell_runner_unittest.cc", | 203 "shell_runner_unittest.cc", |
| 204 "test/run_all_unittests.cc", | 204 "test/run_all_unittests.cc", |
| 205 "test/run_js_tests.cc", | 205 "test/run_js_tests.cc", |
| 206 "v8_isolate_memory_dump_provider_unittest.cc", | 206 "v8_isolate_memory_dump_provider_unittest.cc", |
| 207 "v8_platform_unittest.cc", |
| 207 "wrappable_unittest.cc", | 208 "wrappable_unittest.cc", |
| 208 ] | 209 ] |
| 209 | 210 |
| 210 deps = [ | 211 deps = [ |
| 211 ":gin_shell", | 212 ":gin_shell", |
| 212 ":gin_test", | 213 ":gin_test", |
| 213 "//base/test:test_support", | 214 "//base/test:test_support", |
| 214 "//v8", | 215 "//v8", |
| 215 ] | 216 ] |
| 216 | 217 |
| 217 configs += [ "//v8:external_startup_data" ] | 218 configs += [ "//v8:external_startup_data" ] |
| 218 | 219 |
| 219 data = [ | 220 data = [ |
| 220 "modules/module_registry_unittests.js", | 221 "modules/module_registry_unittests.js", |
| 221 "shell/hello_world.js", | 222 "shell/hello_world.js", |
| 222 "test/file_unittests.js", | 223 "test/file_unittests.js", |
| 223 "test/gtest_unittests.js", | 224 "test/gtest_unittests.js", |
| 224 "../OWNERS", | 225 "../OWNERS", |
| 225 ] | 226 ] |
| 226 | 227 |
| 227 data_deps = [ | 228 data_deps = [ |
| 228 ":gin_shell", | 229 ":gin_shell", |
| 229 ] | 230 ] |
| 230 } | 231 } |
| OLD | NEW |