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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "scoped_make_current.cc", | 99 "scoped_make_current.cc", |
100 "scoped_make_current.h", | 100 "scoped_make_current.h", |
101 "sync_control_vsync_provider.cc", | 101 "sync_control_vsync_provider.cc", |
102 "sync_control_vsync_provider.h", | 102 "sync_control_vsync_provider.h", |
103 ] | 103 ] |
104 | 104 |
105 defines = [ "GL_IMPLEMENTATION" ] | 105 defines = [ "GL_IMPLEMENTATION" ] |
106 | 106 |
107 include_dirs = [ | 107 include_dirs = [ |
108 "//third_party/switfshader/include", | 108 "//third_party/switfshader/include", |
109 "//third_party/khronos", | |
110 "//third_party/mesa/src/include", | 109 "//third_party/mesa/src/include", |
111 ] | 110 ] |
112 | 111 |
113 all_dependent_configs = [ ":gl_config" ] | 112 all_dependent_configs = [ ":gl_config" ] |
114 | 113 |
| 114 configs += [ "//third_party/khronos:khronos_headers" ] |
| 115 |
115 deps = [ | 116 deps = [ |
116 "//base/third_party/dynamic_annotations", | 117 "//base/third_party/dynamic_annotations", |
117 "//gpu/command_buffer/common", | |
118 "//skia", | 118 "//skia", |
119 ] | 119 ] |
120 public_deps = [ | 120 public_deps = [ |
121 "//base", | 121 "//base", |
122 "//third_party/mesa:mesa_headers", | 122 "//third_party/mesa:mesa_headers", |
123 "//ui/events/platform", | 123 "//ui/events/platform", |
124 "//ui/gfx", | 124 "//ui/gfx", |
125 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
126 ] | 126 ] |
127 | 127 |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 deps = [ | 280 deps = [ |
281 ":surface_jni_headers", | 281 ":surface_jni_headers", |
282 ] | 282 ] |
283 sources = [ | 283 sources = [ |
284 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 284 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
285 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 285 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
286 ] | 286 ] |
287 jni_package = "ui/gl" | 287 jni_package = "ui/gl" |
288 } | 288 } |
289 } | 289 } |
OLD | NEW |