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