OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 group("child") { | 8 group("child") { |
9 testonly = true | 9 testonly = true |
10 deps = [ | 10 deps = [ |
11 ":apptests", | 11 ":apptests", |
12 ":lib", | 12 ":lib", |
13 ] | 13 ] |
14 } | 14 } |
15 | 15 |
16 source_set("lib") { | 16 source_set("lib") { |
17 sources = [ | 17 sources = [ |
18 "runner_connection.cc", | 18 "runner_connection.cc", |
19 "runner_connection.h", | 19 "runner_connection.h", |
20 ] | 20 ] |
21 | 21 |
22 deps = [ | 22 deps = [ |
23 ":interfaces", | 23 ":interfaces", |
24 "//base", | 24 "//base", |
| 25 "//mojo/edk/system", |
25 "//mojo/message_pump", | 26 "//mojo/message_pump", |
26 "//mojo/platform_handle:platform_handle_impl", | 27 "//mojo/platform_handle:platform_handle_impl", |
27 "//mojo/shell/public/interfaces", | 28 "//mojo/shell/public/interfaces", |
28 "//third_party/mojo/src/mojo/edk/system", | |
29 ] | 29 ] |
30 } | 30 } |
31 | 31 |
32 mojom("interfaces") { | 32 mojom("interfaces") { |
33 sources = [ | 33 sources = [ |
34 "child_controller.mojom", | 34 "child_controller.mojom", |
35 ] | 35 ] |
36 | 36 |
37 deps = [ | 37 deps = [ |
38 "//mojo/shell/public/interfaces", | 38 "//mojo/shell/public/interfaces", |
39 ] | 39 ] |
40 | 40 |
41 import_dirs = [ "//mojo/services" ] | 41 import_dirs = [ "//mojo/services" ] |
42 } | 42 } |
43 | 43 |
44 source_set("test_native_main") { | 44 source_set("test_native_main") { |
45 sources = [ | 45 sources = [ |
46 "test_native_main.cc", | 46 "test_native_main.cc", |
47 "test_native_main.h", | 47 "test_native_main.h", |
48 ] | 48 ] |
49 | 49 |
50 public_deps = [ | 50 public_deps = [ |
51 "//mojo/runner:init", | 51 "//mojo/runner:init", |
52 ] | 52 ] |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 "//base", | 55 "//base", |
| 56 "//mojo/edk/system", |
56 "//mojo/gles2", | 57 "//mojo/gles2", |
57 "//mojo/message_pump", | 58 "//mojo/message_pump", |
58 "//mojo/runner/child:lib", | 59 "//mojo/runner/child:lib", |
59 "//mojo/shell/public/cpp", | 60 "//mojo/shell/public/cpp", |
60 "//third_party/mojo/src/mojo/edk/system", | |
61 ] | 61 ] |
62 } | 62 } |
63 | 63 |
64 mojom("apptest_interfaces") { | 64 mojom("apptest_interfaces") { |
65 sources = [ | 65 sources = [ |
66 "test_native_service.mojom", | 66 "test_native_service.mojom", |
67 ] | 67 ] |
68 | 68 |
69 deps = [ | 69 deps = [ |
70 "//mojo/shell/public/interfaces", | 70 "//mojo/shell/public/interfaces", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 deps = [ | 108 deps = [ |
109 ":apptest_interfaces", | 109 ":apptest_interfaces", |
110 ":lib", | 110 ":lib", |
111 ":test_native_main", | 111 ":test_native_main", |
112 "//base", | 112 "//base", |
113 "//build/config/sanitizers:deps", | 113 "//build/config/sanitizers:deps", |
114 "//mojo/common:common_base", | 114 "//mojo/common:common_base", |
115 "//mojo/shell/public/cpp", | 115 "//mojo/shell/public/cpp", |
116 ] | 116 ] |
117 } | 117 } |
OLD | NEW |