| 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", |
| 597 "//media/test:pipeline_integration_tests", | 600 "//media/test:pipeline_integration_tests", |
| 598 "//skia", # Direct dependency required to inherit config. | 601 "//skia", # Direct dependency required to inherit config. |
| 599 "//testing/gmock", | 602 "//testing/gmock", |
| 600 "//testing/gtest", | 603 "//testing/gtest", |
| 601 "//third_party/libwebm", | 604 "//third_party/libwebm", |
| 602 "//third_party/libyuv", | 605 "//third_party/libyuv", |
| 603 "//third_party/widevine/cdm:version_h", | 606 "//third_party/widevine/cdm:version_h", |
| 604 "//ui/gfx:test_support", | 607 "//ui/gfx:test_support", |
| 605 "//url", | 608 "//url", |
| 606 ] | 609 ] |
| 607 | 610 |
| 608 data_deps = [] | 611 data_deps = [] |
| 609 | 612 |
| 610 if (is_android) { | 613 if (is_android) { |
| 611 sources -= [ | 614 sources -= [ |
| 612 "filters/decrypting_audio_decoder_unittest.cc", | 615 "filters/decrypting_audio_decoder_unittest.cc", |
| 613 "filters/decrypting_video_decoder_unittest.cc", | 616 "filters/decrypting_video_decoder_unittest.cc", |
| 614 ] | 617 ] |
| 615 deps += [ | 618 deps += [ |
| 616 "//media/base/android:media_java", | 619 "//media/base/android:media_java", |
| 617 "//media/base/android:unittests", | 620 "//media/base/android:unittests", |
| 621 "//media/capture/video/android:capture_java", |
| 618 "//ui/android:ui_java", | 622 "//ui/android:ui_java", |
| 619 ] | 623 ] |
| 620 } | 624 } |
| 621 if (is_mac || is_ios) { | 625 if (is_mac || is_ios) { |
| 622 deps += [ "//media/base/mac:unittests" ] | 626 deps += [ "//media/base/mac:unittests" ] |
| 623 } | 627 } |
| 624 | 628 |
| 625 # If ExternalClearKey is built, we can test CdmAdapter. | 629 # If ExternalClearKey is built, we can test CdmAdapter. |
| 626 if (enable_pepper_cdms) { | 630 if (enable_pepper_cdms) { |
| 627 sources += [ "cdm/cdm_adapter_unittest.cc" ] | 631 sources += [ "cdm/cdm_adapter_unittest.cc" ] |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 sources = [ | 881 sources = [ |
| 878 "filters/vpx_video_decoder_fuzzertest.cc", | 882 "filters/vpx_video_decoder_fuzzertest.cc", |
| 879 ] | 883 ] |
| 880 deps = [ | 884 deps = [ |
| 881 ":media", | 885 ":media", |
| 882 "//base", | 886 "//base", |
| 883 ] | 887 ] |
| 884 libfuzzer_options = [ "max_len = 400000" ] | 888 libfuzzer_options = [ "max_len = 400000" ] |
| 885 seed_corpus = "//media/test/data" | 889 seed_corpus = "//media/test/data" |
| 886 } | 890 } |
| OLD | NEW |