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

Side by Side Diff: media/BUILD.gn

Issue 2401963003: Add a fuzzer target for MP4 AVCC record parsing (Closed)
Patch Set: condition target on proprietary codecs Created 4 years, 2 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/formats/mp4/mp4_avcc_parser_fuzzer.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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 fuzzer_test("media_webm_muxer_fuzzer") { 904 fuzzer_test("media_webm_muxer_fuzzer") {
905 sources = [ 905 sources = [
906 "muxers/webm_muxer_fuzzertest.cc", 906 "muxers/webm_muxer_fuzzertest.cc",
907 ] 907 ]
908 deps = [ 908 deps = [
909 ":media", 909 ":media",
910 "//base", 910 "//base",
911 "//third_party/libwebm", 911 "//third_party/libwebm",
912 ] 912 ]
913 } 913 }
914
915 if (proprietary_codecs) {
916 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
917 sources = [
918 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
919 ]
920 deps = [
921 ":media",
922 "//base",
923 ]
924 }
925 }
OLDNEW
« no previous file with comments | « no previous file | media/formats/mp4/mp4_avcc_parser_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698