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 # TODO(use_chrome_edk): remove "2" | 7 # TODO(use_chrome_edk): remove "2" |
8 test("js_unittests2") { | 8 test("js_unittests2") { |
9 deps = [ | 9 deps = [ |
10 "../../js", | 10 "../../js", |
11 "../../js:js_unittests", | 11 "../../js:js_unittests", |
12 "../../test:run_all_unittests", | 12 "../../test:run_all_unittests", |
13 "../../test:test_support", | 13 "../../test:test_support", |
14 "//base", | 14 "//base", |
15 "//gin:gin_test", | 15 "//gin:gin_test", |
16 "//mojo/environment:chromium", | 16 "//mojo/environment:chromium", |
17 "//third_party/mojo/src/mojo/public/cpp/environment", | 17 "//mojo/public/cpp/environment", |
18 "//third_party/mojo/src/mojo/public/cpp/system", | 18 "//mojo/public/cpp/system", |
19 "//third_party/mojo/src/mojo/public/cpp/utility", | 19 "//mojo/public/cpp/utility", |
20 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", | 20 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
21 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s_experimental", | 21 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
22 ] | 22 ] |
23 | 23 |
24 sources = [ | 24 sources = [ |
25 "run_js_tests.cc", | 25 "run_js_tests.cc", |
26 ] | 26 ] |
27 } | 27 } |
28 | 28 |
29 # TODO(use_chrome_edk): remove "2" | 29 # TODO(use_chrome_edk): remove "2" |
30 test("js_integration_tests2") { | 30 test("js_integration_tests2") { |
31 deps = [ | 31 deps = [ |
32 "../../js", | 32 "../../js", |
33 "../../js/tests:js_to_cpp_tests", | 33 "../../js/tests:js_to_cpp_tests", |
34 "../../test:run_all_unittests", | 34 "../../test:run_all_unittests", |
35 "../../test:test_support", | 35 "../../test:test_support", |
36 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
37 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", | |
38 "//base", | 36 "//base", |
39 "//gin:gin_test", | 37 "//gin:gin_test", |
40 "//mojo/environment:chromium", | 38 "//mojo/environment:chromium", |
| 39 "//mojo/public/cpp/bindings", |
| 40 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
41 ] | 41 ] |
42 | 42 |
43 sources = [ | 43 sources = [ |
44 "run_js_integration_tests.cc", | 44 "run_js_integration_tests.cc", |
45 ] | 45 ] |
46 } | 46 } |
OLD | NEW |