| 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 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "gpu_timing.cc", | 97 "gpu_timing.cc", |
| 98 "gpu_timing.h", | 98 "gpu_timing.h", |
| 99 "scoped_binders.cc", | 99 "scoped_binders.cc", |
| 100 "scoped_binders.h", | 100 "scoped_binders.h", |
| 101 "scoped_make_current.cc", | 101 "scoped_make_current.cc", |
| 102 "scoped_make_current.h", | 102 "scoped_make_current.h", |
| 103 "sync_control_vsync_provider.cc", | 103 "sync_control_vsync_provider.cc", |
| 104 "sync_control_vsync_provider.h", | 104 "sync_control_vsync_provider.h", |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 configs += [ "//build/config:precompiled_headers" ] | |
| 108 defines = [ "GL_IMPLEMENTATION" ] | 107 defines = [ "GL_IMPLEMENTATION" ] |
| 109 | 108 |
| 110 include_dirs = [ | 109 include_dirs = [ |
| 111 "//third_party/switfshader/include", | 110 "//third_party/switfshader/include", |
| 112 "//third_party/mesa/src/include", | 111 "//third_party/mesa/src/include", |
| 113 ] | 112 ] |
| 114 | 113 |
| 115 all_dependent_configs = [ ":gl_config" ] | 114 all_dependent_configs = [ ":gl_config" ] |
| 116 | 115 |
| 117 public_configs = [ "//third_party/khronos:khronos_headers" ] | 116 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 deps = [ | 348 deps = [ |
| 350 ":surface_jni_headers", | 349 ":surface_jni_headers", |
| 351 ] | 350 ] |
| 352 sources = [ | 351 sources = [ |
| 353 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 352 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 354 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 353 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 355 ] | 354 ] |
| 356 jni_package = "ui/gl" | 355 jni_package = "ui/gl" |
| 357 } | 356 } |
| 358 } | 357 } |
| OLD | NEW |