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") { |
| 8 sources = [ |
| 9 "moterm_main.cc", |
| 10 "moterm_view.cc", |
| 11 "moterm_view.h", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 ":driver", |
| 16 ":gl_helper", |
| 17 ":key_util", |
| 18 ":model", |
| 19 "//base", |
| 20 "//mojo/application", |
| 21 "//mojo/common", |
| 22 "//mojo/public/c/system", |
| 23 "//mojo/public/cpp/application", |
| 24 "//mojo/public/cpp/bindings", |
| 25 "//mojo/public/cpp/bindings:callback", |
| 26 "//mojo/services/files/public/interfaces", |
| 27 "//mojo/services/surfaces/public/interfaces:surface_id", |
| 28 "//mojo/services/terminal/public/interfaces", |
| 29 "//mojo/services/view_manager/public/cpp", |
| 30 "//mojo/skia", |
| 31 "//skia", |
| 32 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", |
| 33 ] |
| 34 } |
| 35 |
7 mojo_native_application("gl_helper_test_app") { | 36 mojo_native_application("gl_helper_test_app") { |
8 sources = [ | 37 sources = [ |
9 "gl_helper_test_app.cc", | 38 "gl_helper_test_app.cc", |
10 ] | 39 ] |
11 | 40 |
12 deps = [ | 41 deps = [ |
13 ":gl_helper", | 42 ":gl_helper", |
14 "//base", | 43 "//base", |
15 "//mojo/application", | 44 "//mojo/application", |
16 "//mojo/services/geometry/public/interfaces", | 45 "//mojo/services/geometry/public/interfaces", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 ":driver", | 140 ":driver", |
112 ":gl_helper", | 141 ":gl_helper", |
113 ":key_util", | 142 ":key_util", |
114 ":model", | 143 ":model", |
115 "//mojo/application", | 144 "//mojo/application", |
116 "//mojo/application:test_support", | 145 "//mojo/application:test_support", |
117 "//mojo/public/cpp/bindings:callback", | 146 "//mojo/public/cpp/bindings:callback", |
118 "//testing/gtest", | 147 "//testing/gtest", |
119 ] | 148 ] |
120 } | 149 } |
OLD | NEW |