| 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 test("apps_js_unittests") { | 5 source_set("test") { |
| 6 testonly = true |
| 6 deps = [ | 7 deps = [ |
| 7 "//gin:gin_test", | 8 "//gin:gin_test", |
| 8 "//mojo/apps/js/bindings", | |
| 9 "//mojo/edk/js", | 9 "//mojo/edk/js", |
| 10 "//mojo/common", | |
| 11 "//mojo/edk/test:run_all_unittests", | 10 "//mojo/edk/test:run_all_unittests", |
| 12 "//mojo/edk/test:test_support", | 11 "//mojo/edk/test:test_support", |
| 13 "//mojo/public/cpp/bindings", | 12 "//mojo/public/cpp/bindings", |
| 14 "//mojo/public/cpp/system", | 13 "//mojo/public/cpp/system", |
| 15 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 14 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 15 "//services/js/modules/clock", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 sources = [ | 18 sources = [ |
| 19 "run_apps_js_tests.cc", | 19 "run_clock_tests.cc", |
| 20 ] | 20 ] |
| 21 } | 21 } |
| OLD | NEW |