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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 if (media_use_ffmpeg) { | 793 if (media_use_ffmpeg) { |
794 # Direct dependency required to inherit config. | 794 # Direct dependency required to inherit config. |
795 deps += [ "//third_party/ffmpeg" ] | 795 deps += [ "//third_party/ffmpeg" ] |
796 } | 796 } |
797 | 797 |
798 # This target should not require the Chrome executable to run. | 798 # This target should not require the Chrome executable to run. |
799 assert_no_deps = [ "//chrome" ] | 799 assert_no_deps = [ "//chrome" ] |
800 | 800 |
801 data = [ | 801 data = [ |
802 "test/data/", | 802 "test/data/", |
| 803 |
| 804 # Needed for isolate script to execute. |
| 805 "//testing/scripts/common.py", |
| 806 "//testing/xvfb.py", |
| 807 "//testing/scripts/run_gtest_perf_test.py", |
| 808 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
803 ] | 809 ] |
804 } | 810 } |
805 | 811 |
806 # For running the subset of media_unittests that might require audio hardware | 812 # For running the subset of media_unittests that might require audio hardware |
807 # separately on GPU bots. media_unittests includes these too. | 813 # separately on GPU bots. media_unittests includes these too. |
808 test("audio_unittests") { | 814 test("audio_unittests") { |
809 deps = [ | 815 deps = [ |
810 ":test_support", | 816 ":test_support", |
811 "//base/test:test_support", | 817 "//base/test:test_support", |
812 "//media/audio:unit_tests", | 818 "//media/audio:unit_tests", |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 973 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
968 sources = [ | 974 sources = [ |
969 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 975 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
970 ] | 976 ] |
971 deps = [ | 977 deps = [ |
972 ":media", | 978 ":media", |
973 "//base", | 979 "//base", |
974 ] | 980 ] |
975 } | 981 } |
976 } | 982 } |
OLD | NEW |