| Index: services/js/system/test/BUILD.gn
|
| diff --git a/services/js/system/test/BUILD.gn b/services/js/system/test/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2bc26c48c5648c8f28320fdf62aa8a820497d4b2
|
| --- /dev/null
|
| +++ b/services/js/system/test/BUILD.gn
|
| @@ -0,0 +1,44 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//testing/test.gni")
|
| +
|
| +test("js_unittests") {
|
| + deps = [
|
| + "//base",
|
| + "//gin:gin_test",
|
| + "//mojo/edk/test:run_all_unittests",
|
| + "//mojo/edk/test:test_support",
|
| + "//mojo/environment:chromium",
|
| + "//mojo/public/cpp/environment",
|
| + "//mojo/public/cpp/system",
|
| + "//mojo/public/cpp/utility",
|
| + "//mojo/public/interfaces/bindings/tests:test_interfaces",
|
| + "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental",
|
| + "//services/js/system",
|
| + "//services/js/system:js_unittests",
|
| + ]
|
| +
|
| + sources = [
|
| + "run_js_tests.cc",
|
| + ]
|
| +}
|
| +
|
| +test("js_integration_tests") {
|
| + deps = [
|
| + "//base",
|
| + "//gin:gin_test",
|
| + "//mojo/edk/test:run_all_unittests",
|
| + "//mojo/edk/test:test_support",
|
| + "//mojo/environment:chromium",
|
| + "//mojo/public/cpp/bindings",
|
| + "//mojo/public/interfaces/bindings/tests:test_interfaces",
|
| + "//services/js/system",
|
| + "//services/js/system/tests:js_to_cpp_tests",
|
| + ]
|
| +
|
| + sources = [
|
| + "run_js_integration_tests.cc",
|
| + ]
|
| +}
|
|
|