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", |
11 "moterm_view.h", | 11 "moterm_view.h", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 ":driver", | 15 ":driver", |
16 ":gl_helper", | 16 ":gl_helper", |
17 ":key_util", | 17 ":key_util", |
18 ":model", | 18 ":model", |
19 "//base", | 19 "//base", |
20 "//mojo/application", | 20 "//mojo/application", |
21 "//mojo/common", | 21 "//mojo/common", |
22 "//mojo/public/c/system", | 22 "//mojo/public/c/system", |
23 "//mojo/public/cpp/application", | 23 "//mojo/public/cpp/application", |
24 "//mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
25 "//mojo/public/cpp/bindings:callback", | 25 "//mojo/public/cpp/bindings:callback", |
26 "//mojo/services/files/public/interfaces", | 26 "//mojo/services/files/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 "//skia", | 30 "//skia", |
31 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", | 31 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 mojo_native_application("gl_helper_test_app") { | 35 mojo_native_application("gl_helper_test_app") { |
36 sources = [ | 36 sources = [ |
(...skipping 13 matching lines...) Expand all Loading... |
50 | 50 |
51 source_set("driver") { | 51 source_set("driver") { |
52 sources = [ | 52 sources = [ |
53 "moterm_driver.cc", | 53 "moterm_driver.cc", |
54 "moterm_driver.h", | 54 "moterm_driver.h", |
55 ] | 55 ] |
56 | 56 |
57 public_deps = [ | 57 public_deps = [ |
58 "//base", | 58 "//base", |
59 "//mojo/public/cpp/bindings", | 59 "//mojo/public/cpp/bindings", |
60 "//mojo/services/files/public/interfaces", | 60 "//mojo/services/files/interfaces", |
61 ] | 61 ] |
62 } | 62 } |
63 | 63 |
64 source_set("gl_helper") { | 64 source_set("gl_helper") { |
65 sources = [ | 65 sources = [ |
66 "gl_helper.cc", | 66 "gl_helper.cc", |
67 "gl_helper.h", | 67 "gl_helper.h", |
68 ] | 68 ] |
69 | 69 |
70 deps = [ | 70 deps = [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 ":driver", | 139 ":driver", |
140 ":gl_helper", | 140 ":gl_helper", |
141 ":key_util", | 141 ":key_util", |
142 ":model", | 142 ":model", |
143 "//mojo/application", | 143 "//mojo/application", |
144 "//mojo/application:test_support", | 144 "//mojo/application:test_support", |
145 "//mojo/public/cpp/bindings:callback", | 145 "//mojo/public/cpp/bindings:callback", |
146 "//testing/gtest", | 146 "//testing/gtest", |
147 ] | 147 ] |
148 } | 148 } |
OLD | NEW |