| 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/mojo_application.gni") |
| 6 |
| 5 group("js") { | 7 group("js") { |
| 6 deps = [ | 8 deps = [ |
| 7 ":js_content_handler", | 9 ":js_content_handler", |
| 8 ] | 10 ] |
| 9 } | 11 } |
| 10 | 12 |
| 11 shared_library("js_content_handler") { | 13 mojo_native_application("js_content_handler") { |
| 12 sources = [ | 14 sources = [ |
| 13 "content_handler_main.cc", | 15 "content_handler_main.cc", |
| 14 "js_app.cc", | 16 "js_app.cc", |
| 15 "js_app.h", | 17 "js_app.h", |
| 16 "mojo_bridge_module.cc", | 18 "mojo_bridge_module.cc", |
| 17 "mojo_bridge_module.h", | 19 "mojo_bridge_module.h", |
| 18 ] | 20 ] |
| 19 | 21 |
| 20 deps = [ | 22 deps = [ |
| 21 "//base:i18n", | 23 "//base:i18n", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 36 "//gin:gin_test", | 38 "//gin:gin_test", |
| 37 "//mojo/edk/js", | 39 "//mojo/edk/js", |
| 38 "//mojo/edk/test:run_all_unittests", | 40 "//mojo/edk/test:run_all_unittests", |
| 39 "//mojo/edk/test:test_support", | 41 "//mojo/edk/test:test_support", |
| 40 "//mojo/public/cpp/utility", | 42 "//mojo/public/cpp/utility", |
| 41 "//mojo/environment:chromium", | 43 "//mojo/environment:chromium", |
| 42 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 44 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 43 "//services/js/modules/clock/test", | 45 "//services/js/modules/clock/test", |
| 44 ] | 46 ] |
| 45 } | 47 } |
| OLD | NEW |