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

Side by Side Diff: media/BUILD.gn

Issue 2268183009: H264SPS: Centralize computation of coded size and visible rect. (Closed)
Patch Set: Make sure fuzzing code actually runs. Created 4 years, 3 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.h » ('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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 } 848 }
849 } 849 }
850 850
851 fuzzer_test("media_h264_parser_fuzzer") { 851 fuzzer_test("media_h264_parser_fuzzer") {
852 sources = [ 852 sources = [
853 "filters/h264_parser_fuzzertest.cc", 853 "filters/h264_parser_fuzzertest.cc",
854 ] 854 ]
855 deps = [ 855 deps = [
856 ":media", 856 ":media",
857 "//base", 857 "//base",
858 "//ui/gfx/geometry",
858 ] 859 ]
859 } 860 }
860 861
861 fuzzer_test("media_vp8_parser_fuzzer") { 862 fuzzer_test("media_vp8_parser_fuzzer") {
862 sources = [ 863 sources = [
863 "filters/vp8_parser_fuzzertest.cc", 864 "filters/vp8_parser_fuzzertest.cc",
864 ] 865 ]
865 deps = [ 866 deps = [
866 ":media", 867 ":media",
867 "//base", 868 "//base",
(...skipping 17 matching lines...) Expand all
885 sources = [ 886 sources = [
886 "filters/vpx_video_decoder_fuzzertest.cc", 887 "filters/vpx_video_decoder_fuzzertest.cc",
887 ] 888 ]
888 deps = [ 889 deps = [
889 ":media", 890 ":media",
890 "//base", 891 "//base",
891 ] 892 ]
892 libfuzzer_options = [ "max_len = 400000" ] 893 libfuzzer_options = [ "max_len = 400000" ]
893 seed_corpus = "//media/test/data" 894 seed_corpus = "//media/test/data"
894 } 895 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/h264_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698