| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 ":cdm_paths", | 587 ":cdm_paths", |
| 588 ":media", | 588 ":media", |
| 589 ":test_support", | 589 ":test_support", |
| 590 "//base/test:test_support", | 590 "//base/test:test_support", |
| 591 "//gpu:test_support", | 591 "//gpu:test_support", |
| 592 "//gpu/command_buffer/common", | 592 "//gpu/command_buffer/common", |
| 593 "//media/audio:test_support", | 593 "//media/audio:test_support", |
| 594 "//media/audio:unittests", | 594 "//media/audio:unittests", |
| 595 "//media/base:test_support", | 595 "//media/base:test_support", |
| 596 "//media/base:unittests", | 596 "//media/base:unittests", |
| 597 | |
| 598 # TODO(mcasas): Remove the capture sources after https://crbug.com/618718. | |
| 599 "//media/capture:unittests", | |
| 600 "//media/test:pipeline_integration_tests", | 597 "//media/test:pipeline_integration_tests", |
| 601 "//skia", # Direct dependency required to inherit config. | 598 "//skia", # Direct dependency required to inherit config. |
| 602 "//testing/gmock", | 599 "//testing/gmock", |
| 603 "//testing/gtest", | 600 "//testing/gtest", |
| 604 "//third_party/libwebm", | 601 "//third_party/libwebm", |
| 605 "//third_party/libyuv", | 602 "//third_party/libyuv", |
| 606 "//third_party/widevine/cdm:version_h", | 603 "//third_party/widevine/cdm:version_h", |
| 607 "//ui/gfx:test_support", | 604 "//ui/gfx:test_support", |
| 608 "//url", | 605 "//url", |
| 609 ] | 606 ] |
| 610 | 607 |
| 611 data_deps = [] | 608 data_deps = [] |
| 612 | 609 |
| 613 if (is_android) { | 610 if (is_android) { |
| 614 sources -= [ | 611 sources -= [ |
| 615 "filters/decrypting_audio_decoder_unittest.cc", | 612 "filters/decrypting_audio_decoder_unittest.cc", |
| 616 "filters/decrypting_video_decoder_unittest.cc", | 613 "filters/decrypting_video_decoder_unittest.cc", |
| 617 ] | 614 ] |
| 618 deps += [ | 615 deps += [ |
| 619 "//media/base/android:media_java", | 616 "//media/base/android:media_java", |
| 620 "//media/base/android:unittests", | 617 "//media/base/android:unittests", |
| 621 "//media/capture/video/android:capture_java", | |
| 622 "//ui/android:ui_java", | 618 "//ui/android:ui_java", |
| 623 ] | 619 ] |
| 624 } | 620 } |
| 625 if (is_mac || is_ios) { | 621 if (is_mac || is_ios) { |
| 626 deps += [ "//media/base/mac:unittests" ] | 622 deps += [ "//media/base/mac:unittests" ] |
| 627 } | 623 } |
| 628 | 624 |
| 629 # If ExternalClearKey is built, we can test CdmAdapter. | 625 # If ExternalClearKey is built, we can test CdmAdapter. |
| 630 if (enable_pepper_cdms) { | 626 if (enable_pepper_cdms) { |
| 631 sources += [ "cdm/cdm_adapter_unittest.cc" ] | 627 sources += [ "cdm/cdm_adapter_unittest.cc" ] |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 sources = [ | 877 sources = [ |
| 882 "filters/vpx_video_decoder_fuzzertest.cc", | 878 "filters/vpx_video_decoder_fuzzertest.cc", |
| 883 ] | 879 ] |
| 884 deps = [ | 880 deps = [ |
| 885 ":media", | 881 ":media", |
| 886 "//base", | 882 "//base", |
| 887 ] | 883 ] |
| 888 libfuzzer_options = [ "max_len = 400000" ] | 884 libfuzzer_options = [ "max_len = 400000" ] |
| 889 seed_corpus = "//media/test/data" | 885 seed_corpus = "//media/test/data" |
| 890 } | 886 } |
| OLD | NEW |