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 ] |
(...skipping 15 matching lines...) Expand all Loading... |
26 ] | 26 ] |
27 | 27 |
28 deps = [ | 28 deps = [ |
29 "//base:i18n", | 29 "//base:i18n", |
30 "//mojo/application", | 30 "//mojo/application", |
31 "//mojo/application:application", | 31 "//mojo/application:application", |
32 "//mojo/application:content_handler", | 32 "//mojo/application:content_handler", |
33 "//mojo/common", | 33 "//mojo/common", |
34 "//mojo/edk/js/", | 34 "//mojo/edk/js/", |
35 "//mojo/environment:chromium", | 35 "//mojo/environment:chromium", |
36 "//mojo/public/c/system:for_shared_library", | |
37 "//mojo/public/cpp/system", | 36 "//mojo/public/cpp/system", |
38 "//mojo/public/cpp/utility", | 37 "//mojo/public/cpp/utility", |
39 "//mojo/public/interfaces/application", | 38 "//mojo/public/interfaces/application", |
40 "//mojo/services/public/interfaces/content_handler", | 39 "//mojo/services/public/interfaces/content_handler", |
41 "//mojo/services/public/interfaces/network", | 40 "//mojo/services/public/interfaces/network", |
42 ] | 41 ] |
43 } | 42 } |
44 | 43 |
45 test("js_services_unittests") { | 44 test("js_services_unittests") { |
46 deps = [ | 45 deps = [ |
(...skipping 12 matching lines...) Expand all Loading... |
59 mojo_native_application("js_apptests") { | 58 mojo_native_application("js_apptests") { |
60 testonly = true | 59 testonly = true |
61 | 60 |
62 sources = [ | 61 sources = [ |
63 "echo_apptest.cc", | 62 "echo_apptest.cc", |
64 "pingpong_apptest.cc", | 63 "pingpong_apptest.cc", |
65 ] | 64 ] |
66 | 65 |
67 deps = [ | 66 deps = [ |
68 "//base", | 67 "//base", |
69 "//mojo/public/c/system:for_shared_library", | |
70 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
71 "//mojo/public/cpp/system", | 69 "//mojo/public/cpp/system", |
72 "//services/js/test:echo_service", | 70 "//services/js/test:echo_service", |
73 "//services/js/test:js_application_test_base", | 71 "//services/js/test:js_application_test_base", |
74 "//services/js/test:pingpong_service", | 72 "//services/js/test:pingpong_service", |
75 ] | 73 ] |
76 } | 74 } |
77 | 75 |
OLD | NEW |