| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 "//base", | 360 "//base", |
| 361 "//media", | 361 "//media", |
| 362 "//media/gpu", | 362 "//media/gpu", |
| 363 "//testing/gtest", | 363 "//testing/gtest", |
| 364 "//ui/base", | 364 "//ui/base", |
| 365 "//ui/gfx", | 365 "//ui/gfx", |
| 366 "//ui/gfx:test_support", | 366 "//ui/gfx:test_support", |
| 367 "//ui/gfx/geometry", | 367 "//ui/gfx/geometry", |
| 368 "//ui/gl", | 368 "//ui/gl", |
| 369 "//ui/gl:test_support", | 369 "//ui/gl:test_support", |
| 370 "//ui/gl/init", |
| 370 ] | 371 ] |
| 371 configs += [ "//third_party/khronos:khronos_headers" ] | 372 configs += [ "//third_party/khronos:khronos_headers" ] |
| 372 if (is_chromeos && target_cpu != "arm") { | 373 if (is_chromeos && target_cpu != "arm") { |
| 373 configs += [ "//third_party/libva:libva_config" ] | 374 configs += [ "//third_party/libva:libva_config" ] |
| 374 } | 375 } |
| 375 sources = [ | 376 sources = [ |
| 376 "video_accelerator_unittest_helpers.h", | 377 "video_accelerator_unittest_helpers.h", |
| 377 ] | 378 ] |
| 378 if (is_android) { | 379 if (is_android) { |
| 379 sources += [ "android_video_decode_accelerator_unittest.cc" ] | 380 sources += [ "android_video_decode_accelerator_unittest.cc" ] |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 "video_encode_accelerator_unittest.cc", | 434 "video_encode_accelerator_unittest.cc", |
| 434 ] | 435 ] |
| 435 if (use_x11) { | 436 if (use_x11) { |
| 436 deps += [ "//ui/gfx/x" ] | 437 deps += [ "//ui/gfx/x" ] |
| 437 } | 438 } |
| 438 if (use_ozone) { | 439 if (use_ozone) { |
| 439 deps += [ "//ui/ozone" ] | 440 deps += [ "//ui/ozone" ] |
| 440 } | 441 } |
| 441 } | 442 } |
| 442 } | 443 } |
| OLD | NEW |