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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 "//shell/application_manager", | 124 "//shell/application_manager", |
125 ] | 125 ] |
126 | 126 |
127 deps = [ | 127 deps = [ |
128 "//base", | 128 "//base", |
129 ] | 129 ] |
130 } | 130 } |
131 | 131 |
132 source_set("lib") { | 132 source_set("lib") { |
133 sources = [ | 133 sources = [ |
134 "app_child_process.cc", | 134 "child_main.cc", |
135 "app_child_process.h", | 135 "child_main.h", |
136 "child_process.cc", | |
137 "child_process.h", | |
138 "child_process_host.cc", | 136 "child_process_host.cc", |
139 "child_process_host.h", | 137 "child_process_host.h", |
140 "command_line_util.cc", | 138 "command_line_util.cc", |
141 "command_line_util.h", | 139 "command_line_util.h", |
142 "context.cc", | 140 "context.cc", |
143 "context.h", | 141 "context.h", |
144 "external_application_listener.cc", | 142 "external_application_listener.cc", |
145 "external_application_listener.h", | 143 "external_application_listener.h", |
146 "filename_util.cc", | 144 "filename_util.cc", |
147 "filename_util.h", | 145 "filename_util.h", |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 "//mojo/public/cpp/system:system", | 560 "//mojo/public/cpp/system:system", |
563 "//mojo/services/http_server/public/cpp", | 561 "//mojo/services/http_server/public/cpp", |
564 "//mojo/services/http_server/public/interfaces", | 562 "//mojo/services/http_server/public/interfaces", |
565 "//mojo/services/network/public/interfaces", | 563 "//mojo/services/network/public/interfaces", |
566 "//shell/test:bindings", | 564 "//shell/test:bindings", |
567 ":embed_pingable", | 565 ":embed_pingable", |
568 ] | 566 ] |
569 | 567 |
570 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 568 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
571 } | 569 } |
OLD | NEW |