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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 "gl_mock_autogen_gl.h", | 279 "gl_mock_autogen_gl.h", |
280 "gpu_timing_fake.cc", | 280 "gpu_timing_fake.cc", |
281 "gpu_timing_fake.h", | 281 "gpu_timing_fake.h", |
282 ] | 282 ] |
283 | 283 |
284 configs += [ "//third_party/khronos:khronos_headers" ] | 284 configs += [ "//third_party/khronos:khronos_headers" ] |
285 | 285 |
286 deps = [ | 286 deps = [ |
287 ":gl", | 287 ":gl", |
288 "//testing/gmock", | 288 "//testing/gmock", |
| 289 "//testing/gtest", |
289 ] | 290 ] |
290 } | 291 } |
291 | 292 |
292 source_set("test_support") { | 293 source_set("test_support") { |
293 testonly = true | 294 testonly = true |
294 sources = [ | 295 sources = [ |
295 "test/gl_image_test_support.cc", | 296 "test/gl_image_test_support.cc", |
296 "test/gl_image_test_support.h", | 297 "test/gl_image_test_support.h", |
297 "test/gl_image_test_template.h", | 298 "test/gl_image_test_template.h", |
298 "test/gl_surface_test_support.cc", | 299 "test/gl_surface_test_support.cc", |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 sources = [ | 384 sources = [ |
384 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 385 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
385 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 386 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
386 ] | 387 ] |
387 public_deps = [ | 388 public_deps = [ |
388 ":surface_jni_headers", | 389 ":surface_jni_headers", |
389 ] | 390 ] |
390 jni_package = "ui/gl" | 391 jni_package = "ui/gl" |
391 } | 392 } |
392 } | 393 } |
OLD | NEW |