| 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 18 matching lines...) Expand all Loading... |
| 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/cpp/system", | 36 "//mojo/public/cpp/system", |
| 37 "//mojo/public/cpp/utility", | 37 "//mojo/public/cpp/utility", |
| 38 "//mojo/public/interfaces/application", | 38 "//mojo/public/interfaces/application", |
| 39 "//mojo/services/network/public/interfaces", |
| 39 "//mojo/services/public/interfaces/content_handler", | 40 "//mojo/services/public/interfaces/content_handler", |
| 40 "//mojo/services/public/interfaces/network", | |
| 41 "//services/js/modules/clock", | 41 "//services/js/modules/clock", |
| 42 "//services/js/modules/gl", | 42 "//services/js/modules/gl", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 test("js_services_unittests") { | 46 test("js_services_unittests") { |
| 47 deps = [ | 47 deps = [ |
| 48 "//base", | 48 "//base", |
| 49 "//gin:gin_test", | 49 "//gin:gin_test", |
| 50 "//mojo/edk/js", | 50 "//mojo/edk/js", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 67 | 67 |
| 68 deps = [ | 68 deps = [ |
| 69 "//base", | 69 "//base", |
| 70 "//mojo/public/cpp/bindings", | 70 "//mojo/public/cpp/bindings", |
| 71 "//mojo/public/cpp/system", | 71 "//mojo/public/cpp/system", |
| 72 "//services/js/test:echo_service", | 72 "//services/js/test:echo_service", |
| 73 "//services/js/test:js_application_test_base", | 73 "//services/js/test:js_application_test_base", |
| 74 "//services/js/test:pingpong_service", | 74 "//services/js/test:pingpong_service", |
| 75 ] | 75 ] |
| 76 } | 76 } |
| OLD | NEW |