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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 if (is_android) { | 6 if (is_android) { |
7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
193 "gl_egl_api_implementation.h", | 193 "gl_egl_api_implementation.h", |
194 "gl_surface_wgl.cc", | 194 "gl_surface_wgl.cc", |
195 "gl_surface_wgl.h", | 195 "gl_surface_wgl.h", |
196 "gl_wgl_api_implementation.cc", | 196 "gl_wgl_api_implementation.cc", |
197 "gl_wgl_api_implementation.h", | 197 "gl_wgl_api_implementation.h", |
198 ] | 198 ] |
199 | 199 |
200 libs = [ "dwmapi.lib" ] | 200 libs = [ "dwmapi.lib" ] |
201 ldflags = [ "/DELAYLOAD:dwmapi.dll" ] | 201 ldflags = [ "/DELAYLOAD:dwmapi.dll" ] |
202 | 202 |
203 data_deps = [ | 203 deps += [ |
brettw
2015/04/16 19:33:30
Can you put "# TODO(brettw) bug 477104: this shoul
jam
2015/04/16 20:01:11
Done.
| |
204 "//third_party/angle:libEGL", | 204 "//third_party/angle:libEGL", |
205 "//third_party/angle:libGLESv2", | 205 "//third_party/angle:libGLESv2", |
206 "//third_party/mesa:osmesa", | 206 "//third_party/mesa:osmesa", |
207 ] | 207 ] |
208 } | 208 } |
209 if (is_mac) { | 209 if (is_mac) { |
210 sources += [ | 210 sources += [ |
211 "gl_context_cgl.cc", | 211 "gl_context_cgl.cc", |
212 "gl_context_cgl.h", | 212 "gl_context_cgl.h", |
213 "gl_fence_apple.cc", | 213 "gl_fence_apple.cc", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
286 deps = [ | 286 deps = [ |
287 ":surface_jni_headers", | 287 ":surface_jni_headers", |
288 ] | 288 ] |
289 sources = [ | 289 sources = [ |
290 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 290 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
291 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", | 291 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", |
292 ] | 292 ] |
293 jni_package = "ui/gl" | 293 jni_package = "ui/gl" |
294 } | 294 } |
295 } | 295 } |
OLD | NEW |