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

Side by Side Diff: media/test/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 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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//testing/libfuzzer/fuzzer_test.gni") 6 import("//testing/libfuzzer/fuzzer_test.gni")
7 7
8 source_set("pipeline_integration_test_base") { 8 source_set("pipeline_integration_test_base") {
9 testonly = true 9 testonly = true
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "//base", 123 "//base",
124 "//media", 124 "//media",
125 "//media/test:pipeline_integration_test_base", 125 "//media/test:pipeline_integration_test_base",
126 126
127 # TODO(dalecurtis): Required since the gmock header is included in the 127 # TODO(dalecurtis): Required since the gmock header is included in the
128 # header for pipeline_integration_test_base.h. This should be 128 # header for pipeline_integration_test_base.h. This should be
129 # moved into the .cc file to avoid the extra dependency here. 129 # moved into the .cc file to avoid the extra dependency here.
130 "//testing/gmock", 130 "//testing/gmock",
131 "//ui/gfx:test_support", 131 "//ui/gfx:test_support",
132 ] 132 ]
133 libfuzzer_options = "media_pipeline_integration_fuzzer.options" 133
134 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error.
135 libfuzzer_options = [ "runs=500000" ]
134 } 136 }
OLDNEW
« no previous file with comments | « media/filters/vp9_parser_fuzzertest.options ('k') | media/test/media_pipeline_integration_fuzzer.options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698