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

Side by Side Diff: mojo/public/platform/native/BUILD.gn

Issue 1909133002: Add MGLEcho (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: git add Created 4 years, 8 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 | « mojo/public/c/gpu/MGL/mgl_echo.h ('k') | mojo/public/platform/native/mgl_echo_thunks.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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_sdk.gni") 5 import("../../mojo_sdk.gni")
6 import("../../mojo_application.gni") 6 import("../../mojo_application.gni")
7 7
8 mojo_sdk_source_set("system") { 8 mojo_sdk_source_set("system") {
9 sources = [ 9 sources = [
10 "system_thunks.c", 10 "system_thunks.c",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "mojo/public/c/system", 99 "mojo/public/c/system",
100 ] 100 ]
101 } 101 }
102 102
103 mojo_sdk_source_set("gpu_thunks") { 103 mojo_sdk_source_set("gpu_thunks") {
104 sources = [] 104 sources = []
105 } 105 }
106 106
107 mojo_sdk_source_set("mgl_thunks") { 107 mojo_sdk_source_set("mgl_thunks") {
108 sources = [ 108 sources = [
109 "mgl_echo_thunks.c",
110 "mgl_echo_thunks.h",
109 "mgl_signal_sync_point_thunks.c", 111 "mgl_signal_sync_point_thunks.c",
110 "mgl_signal_sync_point_thunks.h", 112 "mgl_signal_sync_point_thunks.h",
111 "mgl_thunks.c", 113 "mgl_thunks.c",
112 "mgl_thunks.h", 114 "mgl_thunks.h",
113 ] 115 ]
114 116
115 mojo_sdk_deps = [ 117 mojo_sdk_deps = [
116 "mojo/public/c/gpu:MGL", 118 "mojo/public/c/gpu:MGL",
117 "mojo/public/c/gpu:MGL_signal_sync_point", 119 "mojo/public/c/gpu:MGL_signal_sync_point",
120 "mojo/public/c/gpu:MGL_echo",
118 ] 121 ]
119 } 122 }
120 123
121 mojo_sdk_source_set("mgl_onscreen_thunks") { 124 mojo_sdk_source_set("mgl_onscreen_thunks") {
122 sources = [ 125 sources = [
123 "mgl_onscreen_thunks.c", 126 "mgl_onscreen_thunks.c",
124 "mgl_onscreen_thunks.h", 127 "mgl_onscreen_thunks.h",
125 ] 128 ]
126 129
127 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] 130 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ]
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 } 170 }
168 171
169 group("tests") { 172 group("tests") {
170 testonly = true 173 testonly = true
171 174
172 deps = [ 175 deps = [
173 ":platform_handle_private_apptest", 176 ":platform_handle_private_apptest",
174 ":system_impl_private_tests", 177 ":system_impl_private_tests",
175 ] 178 ]
176 } 179 }
OLDNEW
« no previous file with comments | « mojo/public/c/gpu/MGL/mgl_echo.h ('k') | mojo/public/platform/native/mgl_echo_thunks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698