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

Side by Side Diff: media/BUILD.gn

Issue 1867833002: [libfuzzer] store custom options in .GN build target instead of a separate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update reference.md of libFuzzer & CF documentation. Created 4 years, 8 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/vp8_parser_fuzzertest.options » ('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 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 } 811 }
812 812
813 fuzzer_test("media_vp8_parser_fuzzer") { 813 fuzzer_test("media_vp8_parser_fuzzer") {
814 sources = [ 814 sources = [
815 "filters/vp8_parser_fuzzertest.cc", 815 "filters/vp8_parser_fuzzertest.cc",
816 ] 816 ]
817 deps = [ 817 deps = [
818 ":media", 818 ":media",
819 "//base", 819 "//base",
820 ] 820 ]
821 libfuzzer_options = "filters/vp8_parser_fuzzertest.options" 821 libfuzzer_options = [ "max_len = 400000" ]
822 dict = "test/vp8.dict" 822 dict = "test/vp8.dict"
823 } 823 }
824 824
825 fuzzer_test("media_vp9_parser_fuzzer") { 825 fuzzer_test("media_vp9_parser_fuzzer") {
826 sources = [ 826 sources = [
827 "filters/vp9_parser_fuzzertest.cc", 827 "filters/vp9_parser_fuzzertest.cc",
828 ] 828 ]
829 deps = [ 829 deps = [
830 ":media", 830 ":media",
831 "//base", 831 "//base",
832 ] 832 ]
833 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" 833 libfuzzer_options = [ "max_len = 400000" ]
834 } 834 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/vp8_parser_fuzzertest.options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698