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 source_set("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 "local_fetcher.cc", | 16 "local_fetcher.cc", |
17 "local_fetcher.h", | 17 "local_fetcher.h", |
| 18 "native_runner.h", |
18 "network_fetcher.cc", | 19 "network_fetcher.cc", |
19 "network_fetcher.h", | 20 "network_fetcher.h", |
20 "fetcher.cc", | 21 "fetcher.cc", |
21 "fetcher.h", | 22 "fetcher.h", |
22 "shell_impl.cc", | 23 "shell_impl.cc", |
23 "shell_impl.h", | 24 "shell_impl.h", |
24 ] | 25 ] |
25 | 26 |
26 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ] | |
27 | |
28 public_deps = [ | 27 public_deps = [ |
29 "//base", | 28 "//base", |
30 "//mojo/common", | 29 "//mojo/common", |
31 "//mojo/public/interfaces/application:application", | 30 "//mojo/public/interfaces/application:application", |
32 "//mojo/services/network/public/interfaces", | 31 "//mojo/services/network/public/interfaces", |
33 "//url", | 32 "//url", |
34 ] | 33 ] |
35 deps = [ | 34 deps = [ |
36 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
37 "//crypto:crypto", | 36 "//crypto:crypto", |
(...skipping 22 matching lines...) Expand all Loading... |
60 "//testing/gtest", | 59 "//testing/gtest", |
61 "//url", | 60 "//url", |
62 ] | 61 ] |
63 } | 62 } |
64 | 63 |
65 mojom("test_bindings") { | 64 mojom("test_bindings") { |
66 sources = [ | 65 sources = [ |
67 "test.mojom", | 66 "test.mojom", |
68 ] | 67 ] |
69 } | 68 } |
OLD | NEW |