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") { |
8 output_name = "mojo_js_unittests" | 8 output_name = "mojo_js_unittests" |
9 | 9 |
10 deps = [ | 10 deps = [ |
11 "//base", | 11 "//base", |
12 "//gin:gin_test", | 12 "//gin:gin_test", |
13 "//mojo/edk/js", | 13 "//mojo/edk/js", |
14 "//mojo/edk/test:run_all_unittests", | 14 "//mojo/edk/test:run_all_unittests", |
15 "//mojo/edk/test:test_support", | 15 "//mojo/edk/test:test_support", |
16 "//mojo/public/cpp/system", | 16 "//mojo/public/cpp/system", |
17 "//mojo/public/cpp/utility", | |
18 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 17 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
19 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 18 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
20 ] | 19 ] |
21 | 20 |
22 sources = [ | 21 sources = [ |
23 "run_js_tests.cc", | 22 "run_js_tests.cc", |
24 ] | 23 ] |
25 } | 24 } |
26 | 25 |
27 test("js_integration_tests") { | 26 test("js_integration_tests") { |
28 output_name = "mojo_js_integration_tests" | 27 output_name = "mojo_js_integration_tests" |
29 | 28 |
30 deps = [ | 29 deps = [ |
31 "//base", | 30 "//base", |
32 "//gin:gin_test", | 31 "//gin:gin_test", |
33 "//mojo/edk/js", | 32 "//mojo/edk/js", |
34 "//mojo/edk/js/tests:js_to_cpp_tests", | 33 "//mojo/edk/js/tests:js_to_cpp_tests", |
35 "//mojo/edk/test:run_all_unittests", | 34 "//mojo/edk/test:run_all_unittests", |
36 "//mojo/edk/test:test_support", | 35 "//mojo/edk/test:test_support", |
37 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
38 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 37 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
39 ] | 38 ] |
40 | 39 |
41 sources = [ | 40 sources = [ |
42 "run_js_integration_tests.cc", | 41 "run_js_integration_tests.cc", |
43 ] | 42 ] |
44 } | 43 } |
OLD | NEW |