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 test("js_unittests") { | 5 test("js_unittests") { |
6 deps = [ | 6 deps = [ |
7 "//gin:gin_test", | 7 "//gin:gin_test", |
8 "//mojo/edk/js", | 8 "//mojo/edk/js", |
9 "//mojo/edk/js:js_unittests", | |
10 "//mojo/edk/test:run_all_unittests", | 9 "//mojo/edk/test:run_all_unittests", |
11 "//mojo/edk/test:test_support", | 10 "//mojo/edk/test:test_support", |
12 "//mojo/public/cpp/environment:standalone", | |
13 "//mojo/public/cpp/utility", | 11 "//mojo/public/cpp/utility", |
12 "//mojo/environment:chromium", | |
14 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 13 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
15 ] | 14 ] |
16 | 15 |
17 sources = [ "run_js_tests.cc" ] | 16 sources = [ "run_js_tests.cc" ] |
18 } | 17 } |
18 | |
19 test("js_integration_tests") { | |
20 deps = [ | |
jamesr
2014/11/07 01:24:37
this should probably declare a dependency on //bas
hansmuller
2014/11/07 15:40:52
You're right, both test runner applications depend
| |
21 "//gin:gin_test", | |
22 "//mojo/edk/js", | |
23 "//mojo/edk/js/tests:js_to_cpp_tests", | |
24 "//mojo/edk/test:run_all_unittests", | |
25 "//mojo/edk/test:test_support", | |
26 "//mojo/public/cpp/bindings", | |
27 "//mojo/environment:chromium", | |
28 "//mojo/public/interfaces/bindings/tests:test_interfaces", | |
29 ] | |
30 | |
31 sources = [ | |
32 "run_js_integration_tests.cc" | |
33 ] | |
34 } | |
OLD | NEW |