| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 "//testing/gtest", | 378 "//testing/gtest", |
| 379 "//ui/base", | 379 "//ui/base", |
| 380 "//ui/gfx", | 380 "//ui/gfx", |
| 381 "//ui/gfx:test_support", | 381 "//ui/gfx:test_support", |
| 382 "//ui/gfx/geometry", | 382 "//ui/gfx/geometry", |
| 383 "//ui/gl", | 383 "//ui/gl", |
| 384 "//ui/gl:test_support", | 384 "//ui/gl:test_support", |
| 385 "//ui/gl/init", | 385 "//ui/gl/init", |
| 386 ] | 386 ] |
| 387 | 387 |
| 388 configs += [ "//third_party/khronos:khronos_headers" ] | 388 configs += [ |
| 389 "//third_party/khronos:khronos_headers", |
| 390 ":gpu_config", |
| 391 ] |
| 389 if (is_chromeos && current_cpu != "arm") { | 392 if (is_chromeos && current_cpu != "arm") { |
| 390 configs += [ "//third_party/libva:libva_config" ] | 393 configs += [ "//third_party/libva:libva_config" ] |
| 391 } | 394 } |
| 392 | 395 |
| 393 if (is_android) { | 396 if (is_android) { |
| 394 sources += [ "android_video_decode_accelerator_unittest.cc" ] | 397 sources += [ "android_video_decode_accelerator_unittest.cc" ] |
| 395 deps += [ | 398 deps += [ |
| 396 "//gpu:test_support", | 399 "//gpu:test_support", |
| 397 "//media/base/android", | 400 "//media/base/android", |
| 398 "//media/base/android:media_java", | 401 "//media/base/android:media_java", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 "//ui/base", | 446 "//ui/base", |
| 444 "//ui/gfx", | 447 "//ui/gfx", |
| 445 "//ui/gfx:test_support", | 448 "//ui/gfx:test_support", |
| 446 "//ui/gfx/geometry", | 449 "//ui/gfx/geometry", |
| 447 "//ui/gl", | 450 "//ui/gl", |
| 448 "//ui/gl:test_support", | 451 "//ui/gl:test_support", |
| 449 ] | 452 ] |
| 450 configs += [ | 453 configs += [ |
| 451 "//third_party/libva:libva_config", | 454 "//third_party/libva:libva_config", |
| 452 "//third_party/libyuv:libyuv_config", | 455 "//third_party/libyuv:libyuv_config", |
| 456 ":gpu_config", |
| 453 ] | 457 ] |
| 454 sources = [ | 458 sources = [ |
| 455 "video_accelerator_unittest_helpers.h", | 459 "video_accelerator_unittest_helpers.h", |
| 456 "video_encode_accelerator_unittest.cc", | 460 "video_encode_accelerator_unittest.cc", |
| 457 ] | 461 ] |
| 458 if (use_x11) { | 462 if (use_x11) { |
| 459 deps += [ "//ui/gfx/x" ] | 463 deps += [ "//ui/gfx/x" ] |
| 460 } | 464 } |
| 461 if (use_ozone) { | 465 if (use_ozone) { |
| 462 deps += [ "//ui/ozone" ] | 466 deps += [ "//ui/ozone" ] |
| 463 } | 467 } |
| 464 } | 468 } |
| 465 } | 469 } |
| OLD | NEW |