| 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/interfaces", | 26 "//mojo/services/files/interfaces", |
| 27 "//mojo/services/surfaces/interfaces:surface_id", | 27 "//mojo/services/surfaces/interfaces:surface_id", |
| 28 "//mojo/services/terminal/interfaces", | 28 "//mojo/services/terminal/interfaces", |
| 29 "//mojo/services/view_manager/public/cpp", | 29 "//mojo/services/view_manager/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 = [ |
| 37 "gl_helper_test_app.cc", | 37 "gl_helper_test_app.cc", |
| 38 ] | 38 ] |
| 39 | 39 |
| (...skipping 99 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 |