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

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

Issue 2687093002: Rename GLImageOzoneNativePixmap to GLImageNativePixmap and move it from ui/ozone/gl to ui/gl (Closed)
Patch Set: Rebase Created 3 years, 9 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/linux/pkg_config.gni") 7 import("//build/config/linux/pkg_config.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//ui/ozone/ozone.gni") 9 import("//ui/ozone/ozone.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "gl_context_egl.h", 162 "gl_context_egl.h",
163 "gl_egl_api_implementation.cc", 163 "gl_egl_api_implementation.cc",
164 "gl_egl_api_implementation.h", 164 "gl_egl_api_implementation.h",
165 "gl_fence_egl.cc", 165 "gl_fence_egl.cc",
166 "gl_fence_egl.h", 166 "gl_fence_egl.h",
167 "gl_image_egl.cc", 167 "gl_image_egl.cc",
168 "gl_image_egl.h", 168 "gl_image_egl.h",
169 "gl_surface_egl.cc", 169 "gl_surface_egl.cc",
170 "gl_surface_egl.h", 170 "gl_surface_egl.h",
171 ] 171 ]
172
173 if (is_linux) {
174 sources += [
175 "gl_image_native_pixmap.cc",
176 "gl_image_native_pixmap.h",
177 ]
178 }
172 } 179 }
173 if (is_android || is_linux) { 180 if (is_android || is_linux) {
174 sources += [ 181 sources += [
175 "gl_implementation_osmesa.cc", 182 "gl_implementation_osmesa.cc",
176 "gl_implementation_osmesa.h", 183 "gl_implementation_osmesa.h",
177 ] 184 ]
178 } 185 }
179 if (use_x11) { 186 if (use_x11) {
180 sources += [ 187 sources += [
181 "gl_surface_egl_x11.cc", 188 "gl_surface_egl_x11.cc",
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 sources = [ 443 sources = [
437 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 444 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
438 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 445 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
439 ] 446 ]
440 public_deps = [ 447 public_deps = [
441 ":surface_jni_headers", 448 ":surface_jni_headers",
442 ] 449 ]
443 jni_package = "ui/gl" 450 jni_package = "ui/gl"
444 } 451 }
445 } 452 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698