Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: apps/moterm/BUILD.gn

Issue 1388413005: Move //mojo/services/X/public/... to //mojo/services/X/... (part 1). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | apps/moterm/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | apps/moterm/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698