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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("shell") { | 8 source_set("shell") { |
9 output_name = "mojo_shell" | 9 output_name = "mojo_shell" |
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 "identity.cc", | 18 "identity.cc", |
19 "identity.h", | 19 "identity.h", |
20 "local_fetcher.cc", | 20 "local_fetcher.cc", |
21 "local_fetcher.h", | 21 "local_fetcher.h", |
22 "native_runner.h", | 22 "native_runner.h", |
23 "network_fetcher.cc", | 23 "network_fetcher.cc", |
24 "network_fetcher.h", | 24 "network_fetcher.h", |
25 "query_util.cc", | 25 "query_util.cc", |
26 "query_util.h", | 26 "query_util.h", |
27 "shell_impl.cc", | 27 "shell_impl.cc", |
28 "shell_impl.h", | 28 "shell_impl.h", |
| 29 "static_application_loader.cc", |
| 30 "static_application_loader.h", |
29 "switches.cc", | 31 "switches.cc", |
30 "switches.h", | 32 "switches.h", |
31 ] | 33 ] |
32 | 34 |
33 public_deps = [ | 35 public_deps = [ |
34 "//base", | 36 "//base", |
35 "//mojo/application/public/interfaces", | 37 "//mojo/application/public/interfaces", |
36 "//mojo/common", | 38 "//mojo/common", |
37 "//third_party/mojo/src/mojo/public/cpp/bindings", | 39 "//third_party/mojo/src/mojo/public/cpp/bindings", |
38 "//mojo/services/network/public/interfaces", | 40 "//mojo/services/network/public/interfaces", |
(...skipping 25 matching lines...) Expand all Loading... |
64 "//testing/gtest", | 66 "//testing/gtest", |
65 "//url", | 67 "//url", |
66 ] | 68 ] |
67 } | 69 } |
68 | 70 |
69 mojom("test_bindings") { | 71 mojom("test_bindings") { |
70 sources = [ | 72 sources = [ |
71 "test.mojom", | 73 "test.mojom", |
72 ] | 74 ] |
73 } | 75 } |
OLD | NEW |