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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//mojo/tools/embed/rules.gni") | 9 import("//mojo/tools/embed/rules.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "//base", | 115 "//base", |
116 ] | 116 ] |
117 | 117 |
118 public_deps = [ | 118 public_deps = [ |
119 ":native_application_support", | 119 ":native_application_support", |
120 ] | 120 ] |
121 } | 121 } |
122 | 122 |
123 source_set("parent_lib") { | 123 source_set("parent_lib") { |
124 sources = [ | 124 sources = [ |
125 "authenticating_url_loader_loader.cc", | |
126 "authenticating_url_loader_loader.h", | |
127 "background_application_loader.cc", | 125 "background_application_loader.cc", |
128 "background_application_loader.h", | 126 "background_application_loader.h", |
129 "child_process_host.cc", | 127 "child_process_host.cc", |
130 "child_process_host.h", | 128 "child_process_host.h", |
131 "command_line_util.cc", | 129 "command_line_util.cc", |
132 "command_line_util.h", | 130 "command_line_util.h", |
133 "context.cc", | 131 "context.cc", |
134 "context.h", | 132 "context.h", |
135 "filename_util.cc", | 133 "filename_util.cc", |
136 "filename_util.h", | 134 "filename_util.h", |
(...skipping 19 matching lines...) Expand all Loading... |
156 "//base/third_party/dynamic_annotations", | 154 "//base/third_party/dynamic_annotations", |
157 "//base:base_static", | 155 "//base:base_static", |
158 "//mojo/application", | 156 "//mojo/application", |
159 "//mojo/common", | 157 "//mojo/common", |
160 "//mojo/common:tracing_impl", | 158 "//mojo/common:tracing_impl", |
161 "//mojo/edk/system", | 159 "//mojo/edk/system", |
162 "//mojo/public/cpp/bindings", | 160 "//mojo/public/cpp/bindings", |
163 "//mojo/public/interfaces/application", | 161 "//mojo/public/interfaces/application", |
164 "//mojo/services/network/public/interfaces", | 162 "//mojo/services/network/public/interfaces", |
165 "//shell/application_manager", | 163 "//shell/application_manager", |
166 "//services/authenticating_url_loader", | |
167 "//services/url_response_disk_cache", | 164 "//services/url_response_disk_cache", |
168 "//services/tracing:bindings", | 165 "//services/tracing:bindings", |
169 "//url", | 166 "//url", |
170 ] | 167 ] |
171 | 168 |
172 public_deps = [ | 169 public_deps = [ |
173 ":common_lib", | 170 ":common_lib", |
174 ] | 171 ] |
175 | 172 |
176 if (is_android) { | 173 if (is_android) { |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 "//mojo/public/cpp/system:system", | 493 "//mojo/public/cpp/system:system", |
497 "//mojo/services/http_server/public/cpp", | 494 "//mojo/services/http_server/public/cpp", |
498 "//mojo/services/http_server/public/interfaces", | 495 "//mojo/services/http_server/public/interfaces", |
499 "//mojo/services/network/public/interfaces", | 496 "//mojo/services/network/public/interfaces", |
500 "//shell/test:bindings", | 497 "//shell/test:bindings", |
501 ":embed_pingable", | 498 ":embed_pingable", |
502 ] | 499 ] |
503 | 500 |
504 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 501 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
505 } | 502 } |
OLD | NEW |