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 | 6 |
7 mojo_native_application("moterm") { | 7 mojo_native_application("moterm") { |
8 sources = [ | 8 sources = [ |
9 "moterm_main.cc", | 9 "moterm_main.cc", |
10 "moterm_view.cc", | 10 "moterm_view.cc", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "//mojo/services/files/public/interfaces", | 26 "//mojo/services/files/public/interfaces", |
27 "//mojo/services/surfaces/public/interfaces:surface_id", | 27 "//mojo/services/surfaces/public/interfaces:surface_id", |
28 "//mojo/services/terminal/public/interfaces", | 28 "//mojo/services/terminal/public/interfaces", |
29 "//mojo/services/view_manager/public/cpp", | 29 "//mojo/services/view_manager/public/cpp", |
30 "//mojo/skia", | 30 "//mojo/skia", |
31 "//skia", | 31 "//skia", |
32 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", | 32 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", |
33 ] | 33 ] |
34 } | 34 } |
35 | 35 |
| 36 mojo_native_application("moterm_example_app") { |
| 37 sources = [ |
| 38 "moterm_example_app.cc", |
| 39 ] |
| 40 |
| 41 deps = [ |
| 42 "//base", |
| 43 "//examples/window_manager:bindings", |
| 44 "//mojo/application", |
| 45 "//mojo/public/cpp/bindings", |
| 46 "//mojo/public/cpp/utility", |
| 47 "//mojo/public/interfaces/application", |
| 48 "//mojo/services/files/public/interfaces", |
| 49 "//mojo/services/geometry/public/interfaces", |
| 50 "//mojo/services/view_manager/public/cpp", |
| 51 "//mojo/services/terminal/public/interfaces", |
| 52 ] |
| 53 } |
| 54 |
36 mojo_native_application("gl_helper_test_app") { | 55 mojo_native_application("gl_helper_test_app") { |
37 sources = [ | 56 sources = [ |
38 "gl_helper_test_app.cc", | 57 "gl_helper_test_app.cc", |
39 ] | 58 ] |
40 | 59 |
41 deps = [ | 60 deps = [ |
42 ":gl_helper", | 61 ":gl_helper", |
43 "//base", | 62 "//base", |
44 "//mojo/application", | 63 "//mojo/application", |
45 "//mojo/services/geometry/public/interfaces", | 64 "//mojo/services/geometry/public/interfaces", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 ":driver", | 159 ":driver", |
141 ":gl_helper", | 160 ":gl_helper", |
142 ":key_util", | 161 ":key_util", |
143 ":model", | 162 ":model", |
144 "//mojo/application", | 163 "//mojo/application", |
145 "//mojo/application:test_support", | 164 "//mojo/application:test_support", |
146 "//mojo/public/cpp/bindings:callback", | 165 "//mojo/public/cpp/bindings:callback", |
147 "//testing/gtest", | 166 "//testing/gtest", |
148 ] | 167 ] |
149 } | 168 } |
OLD | NEW |