| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 if (is_chromeos && current_cpu != "arm") { | 389 if (is_chromeos && current_cpu != "arm") { |
| 390 configs += [ "//third_party/libva:libva_config" ] | 390 configs += [ "//third_party/libva:libva_config" ] |
| 391 } | 391 } |
| 392 | 392 |
| 393 if (is_android) { | 393 if (is_android) { |
| 394 sources += [ "android_video_decode_accelerator_unittest.cc" ] | 394 sources += [ "android_video_decode_accelerator_unittest.cc" ] |
| 395 deps += [ | 395 deps += [ |
| 396 "//gpu:test_support", | 396 "//gpu:test_support", |
| 397 "//media/base/android", | 397 "//media/base/android", |
| 398 "//media/base/android:media_java", | 398 "//media/base/android:media_java", |
| 399 "//media/capture/video/android:capture_java", | |
| 400 "//testing/gmock", | 399 "//testing/gmock", |
| 401 "//ui/android:ui_java", | 400 "//ui/android:ui_java", |
| 402 ] | 401 ] |
| 403 } else { | 402 } else { |
| 404 sources += [ | 403 sources += [ |
| 405 "rendering_helper.cc", | 404 "rendering_helper.cc", |
| 406 "rendering_helper.h", | 405 "rendering_helper.h", |
| 407 "video_decode_accelerator_unittest.cc", | 406 "video_decode_accelerator_unittest.cc", |
| 408 ] | 407 ] |
| 409 deps += [ | 408 deps += [ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 "video_encode_accelerator_unittest.cc", | 455 "video_encode_accelerator_unittest.cc", |
| 457 ] | 456 ] |
| 458 if (use_x11) { | 457 if (use_x11) { |
| 459 deps += [ "//ui/gfx/x" ] | 458 deps += [ "//ui/gfx/x" ] |
| 460 } | 459 } |
| 461 if (use_ozone) { | 460 if (use_ozone) { |
| 462 deps += [ "//ui/ozone" ] | 461 deps += [ "//ui/ozone" ] |
| 463 } | 462 } |
| 464 } | 463 } |
| 465 } | 464 } |
| OLD | NEW |