Index: mojo/edk/js/test/BUILD.gn |
diff --git a/mojo/edk/js/tests/BUILD.gn b/mojo/edk/js/test/BUILD.gn |
similarity index 51% |
copy from mojo/edk/js/tests/BUILD.gn |
copy to mojo/edk/js/test/BUILD.gn |
index 15553285ada80512c43cc96d6680d1bfc6d2053b..cd4fd5ee9e418edf36a0eb91270e61de54b8337c 100644 |
--- a/mojo/edk/js/tests/BUILD.gn |
+++ b/mojo/edk/js/test/BUILD.gn |
@@ -6,13 +6,29 @@ test("js_unittests") { |
deps = [ |
"//gin:gin_test", |
"//mojo/edk/js", |
- "//mojo/edk/js:js_unittests", |
"//mojo/edk/test:run_all_unittests", |
"//mojo/edk/test:test_support", |
- "//mojo/public/cpp/environment:standalone", |
"//mojo/public/cpp/utility", |
+ "//mojo/environment:chromium", |
"//mojo/public/interfaces/bindings/tests:test_interfaces", |
] |
sources = [ "run_js_tests.cc" ] |
} |
+ |
+test("js_integration_tests") { |
+ 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
|
+ "//gin:gin_test", |
+ "//mojo/edk/js", |
+ "//mojo/edk/js/tests:js_to_cpp_tests", |
+ "//mojo/edk/test:run_all_unittests", |
+ "//mojo/edk/test:test_support", |
+ "//mojo/public/cpp/bindings", |
+ "//mojo/environment:chromium", |
+ "//mojo/public/interfaces/bindings/tests:test_interfaces", |
+ ] |
+ |
+ sources = [ |
+ "run_js_integration_tests.cc" |
+ ] |
+} |