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