OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |