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("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 source_set("mojo_runner_lib") { | 27 source_set("mojo_runner_lib") { |
28 sources = [] | 28 sources = [] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 ":lib", | 31 ":lib", |
32 "//base", | 32 "//base", |
33 "//build/config/sanitizers:deps", | 33 "//build/config/sanitizers:deps", |
34 "//mojo/common", | 34 "//mojo/common", |
35 "//mojo/environment:chromium", | 35 "//mojo/environment:chromium", |
| 36 "//mojo/message_pump", |
36 ] | 37 ] |
37 | 38 |
38 if (!is_android) { | 39 if (!is_android) { |
39 sources += [ | 40 sources += [ |
40 "desktop/launcher_process.cc", | 41 "desktop/launcher_process.cc", |
41 "desktop/launcher_process.h", | 42 "desktop/launcher_process.h", |
42 "desktop/main.cc", | 43 "desktop/main.cc", |
43 ] | 44 ] |
44 deps += [ "//components/tracing:startup_tracing" ] | 45 deps += [ "//components/tracing:startup_tracing" ] |
45 } else { | 46 } else { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 ":child_process_bindings", | 121 ":child_process_bindings", |
121 ":in_process_native_runner", | 122 ":in_process_native_runner", |
122 ":native_application_support", | 123 ":native_application_support", |
123 "//base", | 124 "//base", |
124 "//base/third_party/dynamic_annotations", | 125 "//base/third_party/dynamic_annotations", |
125 "//base:base_static", | 126 "//base:base_static", |
126 "//components/devtools_service/public/cpp", | 127 "//components/devtools_service/public/cpp", |
127 "//components/devtools_service/public/interfaces", | 128 "//components/devtools_service/public/interfaces", |
128 "//mojo/application/public/cpp", | 129 "//mojo/application/public/cpp", |
129 "//mojo/common:tracing_impl", | 130 "//mojo/common:tracing_impl", |
| 131 "//mojo/message_pump", |
| 132 "//mojo/services/network/public/interfaces", |
| 133 "//mojo/services/tracing:bindings", |
| 134 "//mojo/shell", |
130 "//mojo/util:filename_util", | 135 "//mojo/util:filename_util", |
131 "//third_party/mojo/src/mojo/edk/system", | 136 "//third_party/mojo/src/mojo/edk/system", |
132 "//mojo/services/network/public/interfaces", | |
133 "//mojo/shell", | |
134 "//mojo/services/tracing:bindings", | |
135 "//ui/gl", | 137 "//ui/gl", |
136 "//url", | 138 "//url", |
137 ] | 139 ] |
138 | 140 |
139 if (is_linux && !is_android) { | 141 if (is_linux && !is_android) { |
140 sources += [ | 142 sources += [ |
141 "linux_sandbox.cc", | 143 "linux_sandbox.cc", |
142 "linux_sandbox.h", | 144 "linux_sandbox.h", |
143 ] | 145 ] |
144 | 146 |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 | 434 |
433 deps = [ | 435 deps = [ |
434 ":in_process_native_runner", | 436 ":in_process_native_runner", |
435 ":lib", | 437 ":lib", |
436 "//base", | 438 "//base", |
437 "//base:i18n", | 439 "//base:i18n", |
438 "//base/test:test_support", | 440 "//base/test:test_support", |
439 "//mojo/application/public/cpp", | 441 "//mojo/application/public/cpp", |
440 "//mojo/common", | 442 "//mojo/common", |
441 "//mojo/environment:chromium", | 443 "//mojo/environment:chromium", |
| 444 "//mojo/message_pump", |
442 "//mojo/services/test_service:bindings", | 445 "//mojo/services/test_service:bindings", |
443 "//mojo/shell", | 446 "//mojo/shell", |
444 "//mojo/util:filename_util", | 447 "//mojo/util:filename_util", |
445 "//testing/gtest", | 448 "//testing/gtest", |
446 "//third_party/mojo/src/mojo/edk/system", | 449 "//third_party/mojo/src/mojo/edk/system", |
447 "//third_party/mojo/src/mojo/public/cpp/bindings", | 450 "//third_party/mojo/src/mojo/public/cpp/bindings", |
448 "//url", | 451 "//url", |
449 ] | 452 ] |
450 | 453 |
451 data_deps = [ | 454 data_deps = [ |
(...skipping 26 matching lines...) Expand all Loading... |
478 ] | 481 ] |
479 | 482 |
480 deps = [ | 483 deps = [ |
481 "//base", | 484 "//base", |
482 "//mojo/application/public/cpp:test_support", | 485 "//mojo/application/public/cpp:test_support", |
483 "//mojo/runner/test:bindings", | 486 "//mojo/runner/test:bindings", |
484 "//mojo/services/network/public/interfaces", | 487 "//mojo/services/network/public/interfaces", |
485 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 488 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
486 ] | 489 ] |
487 } | 490 } |
OLD | NEW |