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

Side by Side Diff: testing/libfuzzer/fuzzer_test.gni

Issue 2685843006: Update fuzzer_test.gni: add seed_corpuses attribute into noop branch. (Closed)
Patch Set: Created 3 years, 10 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # Defines fuzzer_test. 5 # Defines fuzzer_test.
6 # 6 #
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 } 148 }
149 if (defined(invoker.dict)) { 149 if (defined(invoker.dict)) {
150 assert(invoker.dict == [] || invoker.dict != []) 150 assert(invoker.dict == [] || invoker.dict != [])
151 } 151 }
152 if (defined(invoker.libfuzzer_options)) { 152 if (defined(invoker.libfuzzer_options)) {
153 assert(invoker.libfuzzer_options == [] || invoker.libfuzzer_options != []) 153 assert(invoker.libfuzzer_options == [] || invoker.libfuzzer_options != [])
154 } 154 }
155 if (defined(invoker.seed_corpus)) { 155 if (defined(invoker.seed_corpus)) {
156 assert(invoker.seed_corpus == [] || invoker.seed_corpus != []) 156 assert(invoker.seed_corpus == [] || invoker.seed_corpus != [])
157 } 157 }
158 if (defined(invoker.seed_corpuses)) {
159 assert(invoker.seed_corpuses == [] || invoker.seed_corpuses != [])
160 }
158 assert(!defined(invoker.check_includes) || invoker.check_includes != []) 161 assert(!defined(invoker.check_includes) || invoker.check_includes != [])
159 assert(!defined(invoker.include_dirs) || invoker.include_dirs != []) 162 assert(!defined(invoker.include_dirs) || invoker.include_dirs != [])
160 assert(!defined(invoker.defines) || invoker.defines != []) 163 assert(!defined(invoker.defines) || invoker.defines != [])
161 164
162 group(target_name) { 165 group(target_name) {
163 } 166 }
164 } 167 }
165 } 168 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698