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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 "external_application_listener.cc", | 140 "external_application_listener.cc", |
141 "external_application_listener.h", | 141 "external_application_listener.h", |
142 "filename_util.cc", | 142 "filename_util.cc", |
143 "filename_util.h", | 143 "filename_util.h", |
144 "incoming_connection_listener.cc", | 144 "incoming_connection_listener.cc", |
145 "incoming_connection_listener.h", | 145 "incoming_connection_listener.h", |
146 "out_of_process_native_runner.cc", | 146 "out_of_process_native_runner.cc", |
147 "out_of_process_native_runner.h", | 147 "out_of_process_native_runner.h", |
148 "task_runners.cc", | 148 "task_runners.cc", |
149 "task_runners.h", | 149 "task_runners.h", |
| 150 "tracer.cc", |
| 151 "tracer.h", |
150 "url_resolver.cc", | 152 "url_resolver.cc", |
151 "url_resolver.h", | 153 "url_resolver.h", |
152 ] | 154 ] |
153 | 155 |
154 deps = [ | 156 deps = [ |
155 ":child_controller_bindings", | 157 ":child_controller_bindings", |
156 ":external_application_registrar_bindings", | 158 ":external_application_registrar_bindings", |
157 ":init", | 159 ":init", |
158 ":in_process_native_runner", | 160 ":in_process_native_runner", |
159 ":native_application_support", | 161 ":native_application_support", |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 "//mojo/public/cpp/system:system", | 538 "//mojo/public/cpp/system:system", |
537 "//mojo/services/http_server/public/cpp", | 539 "//mojo/services/http_server/public/cpp", |
538 "//mojo/services/http_server/public/interfaces", | 540 "//mojo/services/http_server/public/interfaces", |
539 "//mojo/services/network/public/interfaces", | 541 "//mojo/services/network/public/interfaces", |
540 "//shell/test:bindings", | 542 "//shell/test:bindings", |
541 ":embed_pingable", | 543 ":embed_pingable", |
542 ] | 544 ] |
543 | 545 |
544 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 546 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
545 } | 547 } |
OLD | NEW |