| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 test("apps_js_unittests") { | 7 test("apps_js_unittests") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":js_to_cpp_bindings", | 9 ":js_to_cpp_bindings", |
| 10 "//gin:gin_test", | 10 "//gin:gin_test", |
| 11 "//mojo/apps/js:mojo_runner", | 11 "//mojo/apps/js:mojo_runner", |
| 12 "//mojo/apps/js/bindings", | 12 "//mojo/apps/js/bindings", |
| 13 "//mojo/bindings/js", | 13 "//mojo/edk/js", |
| 14 "//mojo/common", | 14 "//mojo/common", |
| 15 "//mojo/edk/test:run_all_unittests", | 15 "//mojo/edk/test:run_all_unittests", |
| 16 "//mojo/edk/test:test_support", | 16 "//mojo/edk/test:test_support", |
| 17 "//mojo/public/cpp/bindings", | 17 "//mojo/public/cpp/bindings", |
| 18 "//mojo/public/cpp/system", | 18 "//mojo/public/cpp/system", |
| 19 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 19 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 sources = [ | 22 sources = [ |
| 23 "handle_unittest.cc", | |
| 24 "js_to_cpp_unittest.cc", | 23 "js_to_cpp_unittest.cc", |
| 25 "run_apps_js_tests.cc", | 24 "run_apps_js_tests.cc", |
| 26 ] | 25 ] |
| 27 } | 26 } |
| 28 | 27 |
| 29 mojom("js_to_cpp_bindings") { | 28 mojom("js_to_cpp_bindings") { |
| 30 sources = [ "js_to_cpp.mojom" ] | 29 sources = [ "js_to_cpp.mojom" ] |
| 31 } | 30 } |
| OLD | NEW |