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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 mojo_native_application("launcher") { | 9 mojo_native_application("launcher") { |
10 sources = [ | 10 sources = [ |
11 "main.cc", | 11 "main.cc", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 ":lib", | 15 ":lib", |
16 "//mojo/application", | 16 "//mojo/application", |
17 ] | 17 ] |
18 } | 18 } |
19 | 19 |
| 20 # Library that allows the service code to be included directly into the |
| 21 # embedding shell. Used by https://manganese.googlesource.com/. |
20 source_set("lib") { | 22 source_set("lib") { |
21 sources = [ | 23 sources = [ |
22 "launch_instance.cc", | 24 "launch_instance.cc", |
23 "launch_instance.h", | 25 "launch_instance.h", |
24 "launcher_app.cc", | 26 "launcher_app.cc", |
25 "launcher_app.h", | 27 "launcher_app.h", |
26 "launcher_view_tree.cc", | 28 "launcher_view_tree.cc", |
27 "launcher_view_tree.h", | 29 "launcher_view_tree.h", |
28 ] | 30 ] |
29 | 31 |
(...skipping 12 matching lines...) Expand all Loading... |
42 "//mojo/services/ui/views/cpp", | 44 "//mojo/services/ui/views/cpp", |
43 "//mojo/services/ui/views/interfaces", | 45 "//mojo/services/ui/views/interfaces", |
44 ] | 46 ] |
45 } | 47 } |
46 | 48 |
47 mojom("bindings") { | 49 mojom("bindings") { |
48 sources = [ | 50 sources = [ |
49 "launcher.mojom", | 51 "launcher.mojom", |
50 ] | 52 ] |
51 } | 53 } |
OLD | NEW |