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

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

Issue 1673323002: Remove gl_bindings_skia_in_process (dead code) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 10 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 | « no previous file | ui/gl/gl.gyp » ('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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 16 matching lines...) Expand all
27 "android/surface_texture.cc", 27 "android/surface_texture.cc",
28 "android/surface_texture.h", 28 "android/surface_texture.h",
29 "android/surface_texture_listener.cc", 29 "android/surface_texture_listener.cc",
30 "android/surface_texture_listener.h", 30 "android/surface_texture_listener.h",
31 "gl_bindings.cc", 31 "gl_bindings.cc",
32 "gl_bindings.h", 32 "gl_bindings.h",
33 "gl_bindings_autogen_gl.cc", 33 "gl_bindings_autogen_gl.cc",
34 "gl_bindings_autogen_gl.h", 34 "gl_bindings_autogen_gl.h",
35 "gl_bindings_autogen_osmesa.cc", 35 "gl_bindings_autogen_osmesa.cc",
36 "gl_bindings_autogen_osmesa.h", 36 "gl_bindings_autogen_osmesa.h",
37 "gl_bindings_skia_in_process.cc",
38 "gl_bindings_skia_in_process.h",
39 "gl_context.cc", 37 "gl_context.cc",
40 "gl_context.h", 38 "gl_context.h",
41 "gl_context_android.cc", 39 "gl_context_android.cc",
42 "gl_context_mac.mm", 40 "gl_context_mac.mm",
43 "gl_context_osmesa.cc", 41 "gl_context_osmesa.cc",
44 "gl_context_osmesa.h", 42 "gl_context_osmesa.h",
45 "gl_context_stub.cc", 43 "gl_context_stub.cc",
46 "gl_context_stub.h", 44 "gl_context_stub.h",
47 "gl_context_stub_with_extensions.cc", 45 "gl_context_stub_with_extensions.cc",
48 "gl_context_stub_with_extensions.h", 46 "gl_context_stub_with_extensions.h",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "//third_party/swiftshader/include", 117 "//third_party/swiftshader/include",
120 "//third_party/mesa/src/include", 118 "//third_party/mesa/src/include",
121 ] 119 ]
122 120
123 all_dependent_configs = [ ":gl_config" ] 121 all_dependent_configs = [ ":gl_config" ]
124 122
125 public_configs = [ "//third_party/khronos:khronos_headers" ] 123 public_configs = [ "//third_party/khronos:khronos_headers" ]
126 124
127 deps = [ 125 deps = [
128 "//base/third_party/dynamic_annotations", 126 "//base/third_party/dynamic_annotations",
129 "//skia",
130 ] 127 ]
131 public_deps = [ 128 public_deps = [
132 "//base", 129 "//base",
133 "//third_party/mesa:mesa_headers", 130 "//third_party/mesa:mesa_headers",
134 "//ui/base/", 131 "//ui/base/",
135 "//ui/events/platform", 132 "//ui/events/platform",
136 "//ui/gfx", 133 "//ui/gfx",
137 "//ui/gfx/geometry", 134 "//ui/gfx/geometry",
138 ] 135 ]
139 136
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 sources = [ 386 sources = [
390 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 387 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
391 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 388 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
392 ] 389 ]
393 public_deps = [ 390 public_deps = [
394 ":surface_jni_headers", 391 ":surface_jni_headers",
395 ] 392 ]
396 jni_package = "ui/gl" 393 jni_package = "ui/gl"
397 } 394 }
398 } 395 }
OLDNEW
« no previous file with comments | « no previous file | ui/gl/gl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698