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/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
10 # inherently components. | 10 # inherently components. |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 source_set("lib") { | 130 source_set("lib") { |
131 sources = [ | 131 sources = [ |
132 "app_child_process.cc", | 132 "app_child_process.cc", |
133 "app_child_process.h", | 133 "app_child_process.h", |
134 "app_child_process_host.cc", | 134 "app_child_process_host.cc", |
135 "app_child_process_host.h", | 135 "app_child_process_host.h", |
136 "child_process.cc", | 136 "child_process.cc", |
137 "child_process.h", | 137 "child_process.h", |
138 "child_process_host.cc", | 138 "child_process_host.cc", |
139 "child_process_host.h", | 139 "child_process_host.h", |
| 140 "command_line_util.cc", |
| 141 "command_line_util.h", |
140 "context.cc", | 142 "context.cc", |
141 "context.h", | 143 "context.h", |
142 "data_pipe_peek.cc", | 144 "data_pipe_peek.cc", |
143 "data_pipe_peek.h", | 145 "data_pipe_peek.h", |
144 "dynamic_application_loader.cc", | 146 "dynamic_application_loader.cc", |
145 "dynamic_application_loader.h", | 147 "dynamic_application_loader.h", |
146 "external_application_listener.h", | 148 "external_application_listener.h", |
147 "external_application_listener_posix.cc", | 149 "external_application_listener_posix.cc", |
148 "external_application_listener_win.cc", | 150 "external_application_listener_win.cc", |
149 "filename_util.cc", | 151 "filename_util.cc", |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 | 447 |
446 deps -= [ | 448 deps -= [ |
447 ":lib", | 449 ":lib", |
448 ":external_application_registrar_connection", | 450 ":external_application_registrar_connection", |
449 ":external_application_registrar_bindings", | 451 ":external_application_registrar_bindings", |
450 "//shell/domain_socket", | 452 "//shell/domain_socket", |
451 "//shell/domain_socket:tests", | 453 "//shell/domain_socket:tests", |
452 ] | 454 ] |
453 } | 455 } |
454 } | 456 } |
OLD | NEW |