Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(766)

Unified Diff: mojo/edk/js/test/BUILD.gn

Issue 709603002: Move mojo/apps/js tests et al to mojo/edk/js/test,tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: chromium environment for JS tests Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698