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 component("application_manager") { | 8 component("application_manager") { |
9 output_name = "mojo_application_manager" | 9 output_name = "mojo_application_manager" |
10 sources = [ | 10 sources = [ |
11 "application_loader.h", | 11 "application_loader.h", |
12 "application_manager.cc", | 12 "application_manager.cc", |
13 "application_manager.h", | 13 "application_manager.h", |
14 "data_pipe_peek.cc", | 14 "data_pipe_peek.cc", |
15 "data_pipe_peek.h", | 15 "data_pipe_peek.h", |
16 "fetcher.cc", | 16 "fetcher.cc", |
17 "fetcher.h", | 17 "fetcher.h", |
18 "local_fetcher.cc", | 18 "local_fetcher.cc", |
19 "local_fetcher.h", | 19 "local_fetcher.h", |
20 "network_fetcher.cc", | 20 "network_fetcher.cc", |
21 "network_fetcher.h", | 21 "network_fetcher.h", |
22 "query_util.cc", | 22 "query_util.cc", |
23 "query_util.h", | 23 "query_util.h", |
24 "shell_impl.cc", | 24 "shell_impl.cc", |
25 "shell_impl.h", | 25 "shell_impl.h", |
| 26 "url_and_identity.cc", |
| 27 "url_and_identity.h", |
26 ] | 28 ] |
27 | 29 |
28 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ] | 30 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ] |
29 | 31 |
30 public_deps = [ | 32 public_deps = [ |
31 "//base", | 33 "//base", |
32 "//mojo/common", | 34 "//mojo/common", |
33 "//mojo/public/interfaces/application:application", | 35 "//mojo/public/interfaces/application:application", |
34 "//mojo/services/network/public/interfaces", | 36 "//mojo/services/network/public/interfaces", |
35 "//url", | 37 "//url", |
(...skipping 27 matching lines...) Expand all Loading... |
63 "//testing/gtest", | 65 "//testing/gtest", |
64 "//url", | 66 "//url", |
65 ] | 67 ] |
66 } | 68 } |
67 | 69 |
68 mojom("test_bindings") { | 70 mojom("test_bindings") { |
69 sources = [ | 71 sources = [ |
70 "test.mojom", | 72 "test.mojom", |
71 ] | 73 ] |
72 } | 74 } |
OLD | NEW |