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/public/tools/bindings/mojom.gni") |
5 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo.gni") | |
7 import("//mojo/public/tools/bindings/mojom.gni") | |
8 | 7 |
9 if (!use_prebuilt_mojo_shell) { | |
10 | |
11 # GYP version: mojo/mojo.gyp:mojo_shell | |
12 executable("mojo_shell") { | 8 executable("mojo_shell") { |
13 deps = [ | 9 deps = [ |
14 ":lib", | 10 ":lib", |
15 "//base", | 11 "//base", |
16 "//mojo/common", | 12 "//mojo/common", |
17 "//mojo/environment:chromium", | 13 "//mojo/environment:chromium", |
18 ] | 14 ] |
19 | 15 |
20 if (is_component_build) { | 16 if (is_component_build) { |
21 deps += ["//ui/gl"] | 17 deps += ["//ui/gl"] |
22 } | 18 } |
23 | 19 |
24 sources = [ | 20 sources = [ |
25 "desktop/mojo_main.cc" | 21 "desktop/mojo_main.cc" |
26 ] | 22 ] |
27 } | 23 } |
28 | 24 |
29 } # !use_prebuilt_mojo_shell | |
30 | |
31 # GYP version: mojo/mojo.gyp:mojo_shell_lib | 25 # GYP version: mojo/mojo.gyp:mojo_shell_lib |
32 source_set("lib") { | 26 source_set("lib") { |
33 deps = [ | 27 deps = [ |
34 ":app_child_process_bindings", | 28 ":app_child_process_bindings", |
35 ":external_application_registrar_bindings", | 29 ":external_application_registrar_bindings", |
36 ":external_service_bindings", | 30 ":external_service_bindings", |
37 "//base", | 31 "//base", |
38 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
39 "//base:base_static", | 33 "//base:base_static", |
40 "//mojo/application", | 34 "//mojo/application", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 "//mojo/edk/system", | 193 "//mojo/edk/system", |
200 "//mojo/environment:chromium", | 194 "//mojo/environment:chromium", |
201 ] | 195 ] |
202 | 196 |
203 sources = [ | 197 sources = [ |
204 "incoming_connection_listener_unittest.cc", | 198 "incoming_connection_listener_unittest.cc", |
205 "external_application_listener_unittest.cc", | 199 "external_application_listener_unittest.cc", |
206 "external_application_test_main.cc", | 200 "external_application_test_main.cc", |
207 ] | 201 ] |
208 } | 202 } |
OLD | NEW |