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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("application_manager") { | 8 source_set("application_manager") { |
9 output_name = "mojo_application_manager" | 9 output_name = "mojo_application_manager" |
10 sources = [ | 10 sources = [ |
(...skipping 26 matching lines...) Expand all Loading... |
37 "//mojo/services/authenticating_url_loader_interceptor/interfaces", | 37 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
38 "//mojo/services/authentication/interfaces", | 38 "//mojo/services/authentication/interfaces", |
39 "//mojo/services/network/interfaces", | 39 "//mojo/services/network/interfaces", |
40 "//mojo/services/url_response_disk_cache/interfaces", | 40 "//mojo/services/url_response_disk_cache/interfaces", |
41 "//url", | 41 "//url", |
42 ] | 42 ] |
43 deps = [ | 43 deps = [ |
44 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
45 "//crypto:crypto", | 45 "//crypto:crypto", |
46 "//url", | 46 "//url", |
| 47 "//mojo/common", |
47 "//mojo/edk/system", | 48 "//mojo/edk/system", |
48 "//mojo/environment:chromium", | 49 "//mojo/environment:chromium", |
49 "//mojo/services/content_handler/interfaces", | 50 "//mojo/services/content_handler/interfaces", |
50 "//shell:native_application_support", | 51 "//shell:native_application_support", |
51 ] | 52 ] |
52 } | 53 } |
53 | 54 |
54 test("mojo_application_manager_unittests") { | 55 test("mojo_application_manager_unittests") { |
55 sources = [ | 56 sources = [ |
56 "application_manager_unittest.cc", | 57 "application_manager_unittest.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
69 "//testing/gtest", | 70 "//testing/gtest", |
70 "//url", | 71 "//url", |
71 ] | 72 ] |
72 } | 73 } |
73 | 74 |
74 mojom("test_bindings") { | 75 mojom("test_bindings") { |
75 sources = [ | 76 sources = [ |
76 "test.mojom", | 77 "test.mojom", |
77 ] | 78 ] |
78 } | 79 } |
OLD | NEW |