| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "//ui/base", | 369 "//ui/base", |
| 370 "//ui/gfx", | 370 "//ui/gfx", |
| 371 "//ui/gfx:test_support", | 371 "//ui/gfx:test_support", |
| 372 "//ui/gfx/geometry", | 372 "//ui/gfx/geometry", |
| 373 "//ui/gl", | 373 "//ui/gl", |
| 374 "//ui/gl:test_support", | 374 "//ui/gl:test_support", |
| 375 "//ui/gl/init", | 375 "//ui/gl/init", |
| 376 ] | 376 ] |
| 377 | 377 |
| 378 configs += [ "//third_party/khronos:khronos_headers" ] | 378 configs += [ "//third_party/khronos:khronos_headers" ] |
| 379 if (is_chromeos && target_cpu != "arm") { | 379 if (is_chromeos && current_cpu != "arm") { |
| 380 configs += [ "//third_party/libva:libva_config" ] | 380 configs += [ "//third_party/libva:libva_config" ] |
| 381 } | 381 } |
| 382 | 382 |
| 383 if (is_android) { | 383 if (is_android) { |
| 384 sources += [ "android_video_decode_accelerator_unittest.cc" ] | 384 sources += [ "android_video_decode_accelerator_unittest.cc" ] |
| 385 deps += [ | 385 deps += [ |
| 386 "//gpu:test_support", | 386 "//gpu:test_support", |
| 387 "//media/base/android", | 387 "//media/base/android", |
| 388 "//media/base/android:media_java", | 388 "//media/base/android:media_java", |
| 389 "//media/capture/video/android:capture_java", | 389 "//media/capture/video/android:capture_java", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "video_encode_accelerator_unittest.cc", | 447 "video_encode_accelerator_unittest.cc", |
| 448 ] | 448 ] |
| 449 if (use_x11) { | 449 if (use_x11) { |
| 450 deps += [ "//ui/gfx/x" ] | 450 deps += [ "//ui/gfx/x" ] |
| 451 } | 451 } |
| 452 if (use_ozone) { | 452 if (use_ozone) { |
| 453 deps += [ "//ui/ozone" ] | 453 deps += [ "//ui/ozone" ] |
| 454 } | 454 } |
| 455 } | 455 } |
| 456 } | 456 } |
| OLD | NEW |