| 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/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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "gl_share_group.h", | 99 "gl_share_group.h", |
| 100 "gl_state_restorer.cc", | 100 "gl_state_restorer.cc", |
| 101 "gl_state_restorer.h", | 101 "gl_state_restorer.h", |
| 102 "gl_stub_api.cc", | 102 "gl_stub_api.cc", |
| 103 "gl_stub_api.h", | 103 "gl_stub_api.h", |
| 104 "gl_stub_api_base.h", | 104 "gl_stub_api_base.h", |
| 105 "gl_stub_autogen_gl.cc", | 105 "gl_stub_autogen_gl.cc", |
| 106 "gl_stub_autogen_gl.h", | 106 "gl_stub_autogen_gl.h", |
| 107 "gl_surface.cc", | 107 "gl_surface.cc", |
| 108 "gl_surface.h", | 108 "gl_surface.h", |
| 109 "gl_surface_format.cc", |
| 110 "gl_surface_format.h", |
| 109 "gl_surface_osmesa.cc", | 111 "gl_surface_osmesa.cc", |
| 110 "gl_surface_osmesa.h", | 112 "gl_surface_osmesa.h", |
| 111 "gl_surface_overlay.cc", | 113 "gl_surface_overlay.cc", |
| 112 "gl_surface_overlay.h", | 114 "gl_surface_overlay.h", |
| 113 "gl_surface_stub.cc", | 115 "gl_surface_stub.cc", |
| 114 "gl_surface_stub.h", | 116 "gl_surface_stub.h", |
| 115 "gl_switches.cc", | 117 "gl_switches.cc", |
| 116 "gl_switches.h", | 118 "gl_switches.h", |
| 117 "gl_version_info.cc", | 119 "gl_version_info.cc", |
| 118 "gl_version_info.h", | 120 "gl_version_info.h", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 if (use_ozone) { | 359 if (use_ozone) { |
| 358 deps += [ "//ui/ozone" ] | 360 deps += [ "//ui/ozone" ] |
| 359 } | 361 } |
| 360 } | 362 } |
| 361 | 363 |
| 362 test("gl_unittests") { | 364 test("gl_unittests") { |
| 363 sources = [ | 365 sources = [ |
| 364 "gl_api_unittest.cc", | 366 "gl_api_unittest.cc", |
| 365 "gl_image_ref_counted_memory_unittest.cc", | 367 "gl_image_ref_counted_memory_unittest.cc", |
| 366 "gl_image_shared_memory_unittest.cc", | 368 "gl_image_shared_memory_unittest.cc", |
| 369 "gl_surface_format_unittest.cc", |
| 367 "gl_version_info_unittest.cc", | 370 "gl_version_info_unittest.cc", |
| 368 "gpu_timing_unittest.cc", | 371 "gpu_timing_unittest.cc", |
| 369 ] | 372 ] |
| 370 | 373 |
| 371 if (use_egl) { | 374 if (use_egl) { |
| 372 sources += [ | 375 sources += [ |
| 373 "egl_api_unittest.cc", | 376 "egl_api_unittest.cc", |
| 374 "test/egl_initialization_displays_unittest.cc", | 377 "test/egl_initialization_displays_unittest.cc", |
| 375 ] | 378 ] |
| 376 } | 379 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 sources = [ | 441 sources = [ |
| 439 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 442 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 440 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 443 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 441 ] | 444 ] |
| 442 public_deps = [ | 445 public_deps = [ |
| 443 ":surface_jni_headers", | 446 ":surface_jni_headers", |
| 444 ] | 447 ] |
| 445 jni_package = "ui/gl" | 448 jni_package = "ui/gl" |
| 446 } | 449 } |
| 447 } | 450 } |
| OLD | NEW |