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_overrides/v8.gni") | 5 import("//build_overrides/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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "test/file.h", | 149 "test/file.h", |
150 "test/file_runner.cc", | 150 "test/file_runner.cc", |
151 "test/file_runner.h", | 151 "test/file_runner.h", |
152 "test/gc.cc", | 152 "test/gc.cc", |
153 "test/gc.h", | 153 "test/gc.h", |
154 "test/gtest.cc", | 154 "test/gtest.cc", |
155 "test/gtest.h", | 155 "test/gtest.h", |
156 "test/v8_test.cc", | 156 "test/v8_test.cc", |
157 "test/v8_test.h", | 157 "test/v8_test.h", |
158 ] | 158 ] |
| 159 data = [ |
| 160 "test/expect.js", |
| 161 ] |
159 | 162 |
160 public_deps = [ | 163 public_deps = [ |
161 ":gin", | 164 ":gin", |
162 "//testing/gtest", | 165 "//testing/gtest", |
163 ] | 166 ] |
164 deps = [ | 167 deps = [ |
165 "//v8", | 168 "//v8", |
166 ] | 169 ] |
167 | 170 |
168 configs += [ "//v8:external_startup_data" ] | 171 configs += [ "//v8:external_startup_data" ] |
(...skipping 19 matching lines...) Expand all Loading... |
188 ":gin_test", | 191 ":gin_test", |
189 "//base/test:test_support", | 192 "//base/test:test_support", |
190 "//v8", | 193 "//v8", |
191 ] | 194 ] |
192 | 195 |
193 configs += [ "//v8:external_startup_data" ] | 196 configs += [ "//v8:external_startup_data" ] |
194 | 197 |
195 data = [ | 198 data = [ |
196 "modules/module_registry_unittests.js", | 199 "modules/module_registry_unittests.js", |
197 "shell/hello_world.js", | 200 "shell/hello_world.js", |
198 "test/expect.js", | |
199 "test/file_unittests.js", | 201 "test/file_unittests.js", |
200 "test/gtest_unittests.js", | 202 "test/gtest_unittests.js", |
201 "../OWNERS", | 203 "../OWNERS", |
202 ] | 204 ] |
203 | 205 |
204 data_deps = [ | 206 data_deps = [ |
205 ":gin_shell", | 207 ":gin_shell", |
206 ] | 208 ] |
207 } | 209 } |
OLD | NEW |