| 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 component("gin_features") { | 10 component("gin_features") { | 
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 146   ] | 146   ] | 
| 147   data = [ | 147   data = [ | 
| 148     "test/expect.js", | 148     "test/expect.js", | 
| 149   ] | 149   ] | 
| 150 | 150 | 
| 151   public_deps = [ | 151   public_deps = [ | 
| 152     ":gin", | 152     ":gin", | 
| 153     "//testing/gtest", | 153     "//testing/gtest", | 
| 154   ] | 154   ] | 
| 155   deps = [ | 155   deps = [ | 
|  | 156     "//base/test:test_support", | 
| 156     "//v8", | 157     "//v8", | 
| 157   ] | 158   ] | 
| 158 | 159 | 
| 159   configs += [ "//v8:external_startup_data" ] | 160   configs += [ "//v8:external_startup_data" ] | 
| 160 } | 161 } | 
| 161 | 162 | 
| 162 test("gin_unittests") { | 163 test("gin_unittests") { | 
| 163   sources = [ | 164   sources = [ | 
| 164     "arguments_unittest.cc", | 165     "arguments_unittest.cc", | 
| 165     "converter_unittest.cc", | 166     "converter_unittest.cc", | 
| (...skipping 25 matching lines...) Expand all  Loading... | 
| 191     "shell/hello_world.js", | 192     "shell/hello_world.js", | 
| 192     "test/file_unittests.js", | 193     "test/file_unittests.js", | 
| 193     "test/gtest_unittests.js", | 194     "test/gtest_unittests.js", | 
| 194     "../OWNERS", | 195     "../OWNERS", | 
| 195   ] | 196   ] | 
| 196 | 197 | 
| 197   data_deps = [ | 198   data_deps = [ | 
| 198     ":gin_shell", | 199     ":gin_shell", | 
| 199   ] | 200   ] | 
| 200 } | 201 } | 
| OLD | NEW | 
|---|