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

Side by Side Diff: ui/gl/BUILD.gn

Issue 2136223002: Introduce GLStubApi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 use_egl = is_win || is_android || is_linux 9 use_egl = is_win || is_android || is_linux
10 use_glx = use_x11 10 use_glx = use_x11
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "gl_implementation.h", 89 "gl_implementation.h",
90 "gl_implementation_android.cc", 90 "gl_implementation_android.cc",
91 "gl_implementation_mac.cc", 91 "gl_implementation_mac.cc",
92 "gl_implementation_win.cc", 92 "gl_implementation_win.cc",
93 "gl_osmesa_api_implementation.cc", 93 "gl_osmesa_api_implementation.cc",
94 "gl_osmesa_api_implementation.h", 94 "gl_osmesa_api_implementation.h",
95 "gl_share_group.cc", 95 "gl_share_group.cc",
96 "gl_share_group.h", 96 "gl_share_group.h",
97 "gl_state_restorer.cc", 97 "gl_state_restorer.cc",
98 "gl_state_restorer.h", 98 "gl_state_restorer.h",
99 "gl_stub_api.cc",
100 "gl_stub_api.h",
101 "gl_stub_api_base.h",
102 "gl_stub_autogen_gl.cc",
103 "gl_stub_autogen_gl.h",
99 "gl_surface.cc", 104 "gl_surface.cc",
100 "gl_surface.h", 105 "gl_surface.h",
101 "gl_surface_osmesa.cc", 106 "gl_surface_osmesa.cc",
102 "gl_surface_osmesa.h", 107 "gl_surface_osmesa.h",
103 "gl_surface_overlay.cc", 108 "gl_surface_overlay.cc",
104 "gl_surface_overlay.h", 109 "gl_surface_overlay.h",
105 "gl_surface_stub.cc", 110 "gl_surface_stub.cc",
106 "gl_surface_stub.h", 111 "gl_surface_stub.h",
107 "gl_switches.cc", 112 "gl_switches.cc",
108 "gl_switches.h", 113 "gl_switches.h",
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 sources = [ 414 sources = [
410 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 415 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
411 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 416 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
412 ] 417 ]
413 public_deps = [ 418 public_deps = [
414 ":surface_jni_headers", 419 ":surface_jni_headers",
415 ] 420 ]
416 jni_package = "ui/gl" 421 jni_package = "ui/gl"
417 } 422 }
418 } 423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698