| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 401 |
| 402 source_set("android_video_decode_accelerator_unittests") { | 402 source_set("android_video_decode_accelerator_unittests") { |
| 403 if (is_android) { | 403 if (is_android) { |
| 404 testonly = true | 404 testonly = true |
| 405 sources = [ | 405 sources = [ |
| 406 "android_video_decode_accelerator_unittest.cc", | 406 "android_video_decode_accelerator_unittest.cc", |
| 407 "avda_codec_allocator_unittest.cc", | 407 "avda_codec_allocator_unittest.cc", |
| 408 ] | 408 ] |
| 409 deps = [ | 409 deps = [ |
| 410 ":gpu", | 410 ":gpu", |
| 411 "//base/test:test_support", |
| 411 "//gpu:test_support", | 412 "//gpu:test_support", |
| 412 "//media/base/android", | 413 "//media/base/android", |
| 413 "//testing/gmock", | 414 "//testing/gmock", |
| 414 "//testing/gtest", | 415 "//testing/gtest", |
| 415 ] | 416 ] |
| 416 } | 417 } |
| 417 } | 418 } |
| 418 | 419 |
| 419 if (is_chromeos || is_mac || is_win) { | 420 if (is_chromeos || is_mac || is_win) { |
| 420 test("video_encode_accelerator_unittest") { | 421 test("video_encode_accelerator_unittest") { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 "video_accelerator_unittest_helpers.h", | 476 "video_accelerator_unittest_helpers.h", |
| 476 ] | 477 ] |
| 477 if (use_x11) { | 478 if (use_x11) { |
| 478 deps += [ "//ui/gfx/x" ] | 479 deps += [ "//ui/gfx/x" ] |
| 479 } | 480 } |
| 480 if (use_ozone) { | 481 if (use_ozone) { |
| 481 deps += [ "//ui/ozone" ] | 482 deps += [ "//ui/ozone" ] |
| 482 } | 483 } |
| 483 } | 484 } |
| 484 } | 485 } |
| OLD | NEW |