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

Side by Side Diff: net/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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1901 matching lines...) Expand 10 before | Expand all | Expand 10 after
1912 fuzzer_test("net_unescape_url_component_fuzzer") { 1912 fuzzer_test("net_unescape_url_component_fuzzer") {
1913 sources = [ 1913 sources = [
1914 "base/unescape_url_component_fuzzer.cc", 1914 "base/unescape_url_component_fuzzer.cc",
1915 ] 1915 ]
1916 deps = [ 1916 deps = [
1917 ":net_fuzzer_test_support", 1917 ":net_fuzzer_test_support",
1918 "//base", 1918 "//base",
1919 "//net", 1919 "//net",
1920 ] 1920 ]
1921 dict = "base/unescape_url_component_fuzzer.dict" 1921 dict = "base/unescape_url_component_fuzzer.dict"
1922 libfuzzer_options = "base/unescape_url_component_fuzzer.options" 1922 libfuzzer_options = [ "max_len = 2048" ]
1923 } 1923 }
1924 1924
1925 fuzzer_test("net_websocket_frame_parser_fuzzer") { 1925 fuzzer_test("net_websocket_frame_parser_fuzzer") {
1926 sources = [ 1926 sources = [
1927 "websockets/websocket_frame_parser_fuzzer.cc", 1927 "websockets/websocket_frame_parser_fuzzer.cc",
1928 ] 1928 ]
1929 deps = [ 1929 deps = [
1930 ":net_fuzzer_test_support", 1930 ":net_fuzzer_test_support",
1931 "//net", 1931 "//net",
1932 ] 1932 ]
(...skipping 13 matching lines...) Expand all
1946 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 1946 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
1947 sources = [ 1947 sources = [
1948 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 1948 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
1949 ] 1949 ]
1950 deps = [ 1950 deps = [
1951 ":net_fuzzer_test_support", 1951 ":net_fuzzer_test_support",
1952 "//base", 1952 "//base",
1953 "//net", 1953 "//net",
1954 ] 1954 ]
1955 } 1955 }
OLDNEW
« no previous file with comments | « media/test/media_pipeline_integration_fuzzer.options ('k') | net/base/unescape_url_component_fuzzer.options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698