| 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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 if (proprietary_codecs) { | 834 if (proprietary_codecs) { |
| 835 fuzzer_test("media_cenc_utils_fuzzer") { | 835 fuzzer_test("media_cenc_utils_fuzzer") { |
| 836 sources = [ | 836 sources = [ |
| 837 "cdm/cenc_utils_fuzzertest.cc", | 837 "cdm/cenc_utils_fuzzertest.cc", |
| 838 ] | 838 ] |
| 839 deps = [ | 839 deps = [ |
| 840 ":media", | 840 ":media", |
| 841 ] | 841 ] |
| 842 } | 842 } |
| 843 } | 843 } |
| 844 |
| 845 fuzzer_test("media_h264_parser_fuzzer") { |
| 846 sources = [ |
| 847 "filters/h264_parser_fuzzertest.cc", |
| 848 ] |
| 849 deps = [ |
| 850 ":media", |
| 851 ] |
| 852 } |
| 853 |
| 854 fuzzer_test("media_vp8_parser_fuzzer") { |
| 855 sources = [ |
| 856 "filters/vp8_parser_fuzzertest.cc", |
| 857 ] |
| 858 deps = [ |
| 859 ":media", |
| 860 ] |
| 861 } |
| 862 |
| 863 fuzzer_test("media_vp9_parser_fuzzer") { |
| 864 sources = [ |
| 865 "filters/vp9_parser_fuzzertest.cc", |
| 866 ] |
| 867 deps = [ |
| 868 ":media", |
| 869 ] |
| 870 } |
| OLD | NEW |