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 | 6 |
7 test("js_unittests") { | 7 test("js_unittests") { |
Ken Rockot(use gerrit already)
2015/09/23 22:32:17
GN seems to not like when there are multiple test
| |
8 deps = [ | 8 deps = [ |
9 "../../js", | 9 "../../js", |
10 "../../js:js_unittests", | 10 "../../js:js_unittests", |
11 "../../test:run_all_unittests", | 11 "../../test:run_all_unittests", |
12 "../../test:test_support", | 12 "../../test:test_support", |
13 "../../../public/cpp/environment", | |
14 "../../../public/cpp/system", | |
15 "../../../public/cpp/utility", | |
16 "../../../public/interfaces/bindings/tests:test_interfaces", | |
17 "../../../public/interfaces/bindings/tests:test_interfaces_experimental", | |
18 "//base", | 13 "//base", |
19 "//gin:gin_test", | 14 "//gin:gin_test", |
20 "//mojo/environment:chromium", | 15 "//mojo/environment:chromium", |
16 "//third_party/mojo/src/mojo/public/cpp/environment", | |
17 "//third_party/mojo/src/mojo/public/cpp/system", | |
18 "//third_party/mojo/src/mojo/public/cpp/utility", | |
19 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface s", | |
20 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface s_experimental", | |
21 ] | 21 ] |
22 | 22 |
23 sources = [ | 23 sources = [ |
24 "run_js_tests.cc", | 24 "run_js_tests.cc", |
25 ] | 25 ] |
26 } | 26 } |
27 | 27 |
28 test("js_integration_tests") { | 28 test("js_integration_tests") { |
29 deps = [ | 29 deps = [ |
30 "../../js", | 30 "../../js", |
31 "../../js/tests:js_to_cpp_tests", | 31 "../../js/tests:js_to_cpp_tests", |
32 "../../test:run_all_unittests", | 32 "../../test:run_all_unittests", |
33 "../../test:test_support", | 33 "../../test:test_support", |
34 "../../../public/cpp/bindings", | 34 "//third_party/mojo/src/mojo/public/cpp/bindings", |
35 "../../../public/interfaces/bindings/tests:test_interfaces", | 35 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface s", |
36 "//base", | 36 "//base", |
37 "//gin:gin_test", | 37 "//gin:gin_test", |
38 "//mojo/environment:chromium", | 38 "//mojo/environment:chromium", |
39 ] | 39 ] |
40 | 40 |
41 sources = [ | 41 sources = [ |
42 "run_js_integration_tests.cc", | 42 "run_js_integration_tests.cc", |
43 ] | 43 ] |
44 } | 44 } |
OLD | NEW |