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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "context.cc", | 125 "context.cc", |
126 "context.h", | 126 "context.h", |
127 "filename_util.cc", | 127 "filename_util.cc", |
128 "filename_util.h", | 128 "filename_util.h", |
129 "in_process_native_runner.cc", | 129 "in_process_native_runner.cc", |
130 "in_process_native_runner.h", | 130 "in_process_native_runner.h", |
131 "out_of_process_native_runner.cc", | 131 "out_of_process_native_runner.cc", |
132 "out_of_process_native_runner.h", | 132 "out_of_process_native_runner.h", |
133 "task_runners.cc", | 133 "task_runners.cc", |
134 "task_runners.h", | 134 "task_runners.h", |
| 135 "tracer.cc", |
| 136 "tracer.h", |
135 "url_resolver.cc", | 137 "url_resolver.cc", |
136 "url_resolver.h", | 138 "url_resolver.h", |
137 ] | 139 ] |
138 | 140 |
139 deps = [ | 141 deps = [ |
140 ":child_controller_bindings", | 142 ":child_controller_bindings", |
141 "//base", | 143 "//base", |
142 "//base/third_party/dynamic_annotations", | 144 "//base/third_party/dynamic_annotations", |
143 "//base:base_static", | 145 "//base:base_static", |
144 "//mojo/application", | 146 "//mojo/application", |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 "//mojo/public/cpp/system:system", | 468 "//mojo/public/cpp/system:system", |
467 "//mojo/services/http_server/public/cpp", | 469 "//mojo/services/http_server/public/cpp", |
468 "//mojo/services/http_server/public/interfaces", | 470 "//mojo/services/http_server/public/interfaces", |
469 "//mojo/services/network/public/interfaces", | 471 "//mojo/services/network/public/interfaces", |
470 "//shell/test:bindings", | 472 "//shell/test:bindings", |
471 ":embed_pingable", | 473 ":embed_pingable", |
472 ] | 474 ] |
473 | 475 |
474 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 476 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
475 } | 477 } |
OLD | NEW |