Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(503)

Side by Side Diff: media/BUILD.gn

Issue 1770583002: Add fuzzer test for various media parsers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add base dependency Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/filters/h264_parser_fuzzertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 "//base",
852 ]
853 }
854
855 fuzzer_test("media_vp8_parser_fuzzer") {
856 sources = [
857 "filters/vp8_parser_fuzzertest.cc",
858 ]
859 deps = [
860 ":media",
861 "//base",
862 ]
863 }
864
865 fuzzer_test("media_vp9_parser_fuzzer") {
866 sources = [
867 "filters/vp9_parser_fuzzertest.cc",
868 ]
869 deps = [
870 ":media",
871 "//base",
872 ]
873 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/h264_parser_fuzzertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698