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 19 matching lines...) Expand all Loading... |
30 ] | 30 ] |
31 | 31 |
32 public_deps = [ | 32 public_deps = [ |
33 "//base", | 33 "//base", |
34 "//mojo/converters/url", | 34 "//mojo/converters/url", |
35 "//mojo/data_pipe_utils", | 35 "//mojo/data_pipe_utils", |
36 "//mojo/public/interfaces/application:application", | 36 "//mojo/public/interfaces/application:application", |
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/public/interfaces", | 39 "//mojo/services/network/public/interfaces", |
40 "//mojo/services/url_response_disk_cache/public/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/edk/system", | 47 "//mojo/edk/system", |
48 "//mojo/environment:chromium", | 48 "//mojo/environment:chromium", |
49 "//mojo/services/content_handler/interfaces", | 49 "//mojo/services/content_handler/interfaces", |
50 "//shell:native_application_support", | 50 "//shell:native_application_support", |
(...skipping 18 matching lines...) Expand all Loading... |
69 "//testing/gtest", | 69 "//testing/gtest", |
70 "//url", | 70 "//url", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 mojom("test_bindings") { | 74 mojom("test_bindings") { |
75 sources = [ | 75 sources = [ |
76 "test.mojom", | 76 "test.mojom", |
77 ] | 77 ] |
78 } | 78 } |
OLD | NEW |