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

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

Issue 1398973004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 2). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_1
Patch Set: add missing copyright notices 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/gl_helper.h » ('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",
(...skipping 23 matching lines...) Expand all
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
40 deps = [ 40 deps = [
41 ":gl_helper", 41 ":gl_helper",
42 "//base", 42 "//base",
43 "//mojo/application", 43 "//mojo/application",
44 "//mojo/services/geometry/public/interfaces", 44 "//mojo/services/geometry/interfaces",
45 "//mojo/services/gpu/public/interfaces", 45 "//mojo/services/gpu/interfaces",
46 "//mojo/services/native_viewport/public/interfaces", 46 "//mojo/services/native_viewport/interfaces",
47 "//mojo/services/surfaces/public/interfaces", 47 "//mojo/services/surfaces/public/interfaces",
48 ] 48 ]
49 } 49 }
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/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 = [
71 "//mojo/public/cpp/application", 71 "//mojo/public/cpp/application",
72 "//mojo/public/c/gpu", 72 "//mojo/public/c/gpu",
73 "//mojo/public/interfaces/application", 73 "//mojo/public/interfaces/application",
74 "//mojo/services/gpu/public/interfaces", 74 "//mojo/services/gpu/interfaces",
75 "//mojo/services/surfaces/public/interfaces", 75 "//mojo/services/surfaces/public/interfaces",
76 ] 76 ]
77 77
78 forward_dependent_configs_from = [ 78 forward_dependent_configs_from = [
79 "//mojo/public/c/gpu", 79 "//mojo/public/c/gpu",
80 "//mojo/services/gpu/public/interfaces", 80 "//mojo/services/gpu/interfaces",
81 "//mojo/services/surfaces/public/interfaces", 81 "//mojo/services/surfaces/public/interfaces",
82 ] 82 ]
83 83
84 public_deps = [ 84 public_deps = [
85 "//base", 85 "//base",
86 "//mojo/public/c/gpu:GLES2", 86 "//mojo/public/c/gpu:GLES2",
87 "//mojo/services/geometry/public/cpp", 87 "//mojo/services/geometry/cpp",
88 "//mojo/services/geometry/public/interfaces", 88 "//mojo/services/geometry/interfaces",
89 "//mojo/services/surfaces/public/cpp", 89 "//mojo/services/surfaces/public/cpp",
90 "//mojo/services/surfaces/public/interfaces:surface_id", 90 "//mojo/services/surfaces/public/interfaces:surface_id",
91 ] 91 ]
92 } 92 }
93 93
94 source_set("key_util") { 94 source_set("key_util") {
95 sources = [ 95 sources = [
96 "key_util.cc", 96 "key_util.cc",
97 "key_util.h", 97 "key_util.h",
98 ] 98 ]
99 99
100 deps = [ 100 deps = [
101 "//base", 101 "//base",
102 ] 102 ]
103 103
104 public_deps = [ 104 public_deps = [
105 "//mojo/services/input_events/public/interfaces", 105 "//mojo/services/input_events/interfaces",
106 ] 106 ]
107 } 107 }
108 108
109 source_set("model") { 109 source_set("model") {
110 sources = [ 110 sources = [
111 "moterm_model.cc", 111 "moterm_model.cc",
112 "moterm_model.h", 112 "moterm_model.h",
113 ] 113 ]
114 114
115 deps = [ 115 deps = [
(...skipping 23 matching lines...) Expand all
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/gl_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698