| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 "//media/audio:test_support", | 725 "//media/audio:test_support", |
| 726 "//media/base:perftests", | 726 "//media/base:perftests", |
| 727 "//media/base:test_support", | 727 "//media/base:test_support", |
| 728 "//media/test:pipeline_integration_perftests", | 728 "//media/test:pipeline_integration_perftests", |
| 729 "//testing/gmock", | 729 "//testing/gmock", |
| 730 "//testing/gtest", | 730 "//testing/gtest", |
| 731 "//testing/perf", | 731 "//testing/perf", |
| 732 "//third_party/widevine/cdm:version_h", | 732 "//third_party/widevine/cdm:version_h", |
| 733 "//ui/gfx:test_support", | 733 "//ui/gfx:test_support", |
| 734 ] | 734 ] |
| 735 if (is_android) { | |
| 736 deps += [ "//ui/gl" ] | |
| 737 } | |
| 738 if (media_use_ffmpeg) { | 735 if (media_use_ffmpeg) { |
| 739 deps += [ "//third_party/ffmpeg" ] # Direct dependency required to inherit
config. | 736 deps += [ "//third_party/ffmpeg" ] # Direct dependency required to inherit
config. |
| 740 } | 737 } |
| 741 | 738 |
| 742 # This target should not require the Chrome executable to run. | 739 # This target should not require the Chrome executable to run. |
| 743 assert_no_deps = [ "//chrome" ] | 740 assert_no_deps = [ "//chrome" ] |
| 741 |
| 742 data = [ |
| 743 "test/data/", |
| 744 ] |
| 744 } | 745 } |
| 745 | 746 |
| 746 # For running the subset of media_unittests that might require audio hardware | 747 # For running the subset of media_unittests that might require audio hardware |
| 747 # separately on GPU bots. media_unittests includes these too. | 748 # separately on GPU bots. media_unittests includes these too. |
| 748 test("audio_unittests") { | 749 test("audio_unittests") { |
| 749 sources = [ | 750 sources = [ |
| 750 "base/run_all_unittests.cc", | 751 "base/run_all_unittests.cc", |
| 751 ] | 752 ] |
| 752 deps = [ | 753 deps = [ |
| 753 ":test_support", | 754 ":test_support", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 sources = [ | 883 sources = [ |
| 883 "filters/vpx_video_decoder_fuzzertest.cc", | 884 "filters/vpx_video_decoder_fuzzertest.cc", |
| 884 ] | 885 ] |
| 885 deps = [ | 886 deps = [ |
| 886 ":media", | 887 ":media", |
| 887 "//base", | 888 "//base", |
| 888 ] | 889 ] |
| 889 libfuzzer_options = [ "max_len = 400000" ] | 890 libfuzzer_options = [ "max_len = 400000" ] |
| 890 seed_corpus = "//media/test/data" | 891 seed_corpus = "//media/test/data" |
| 891 } | 892 } |
| OLD | NEW |