Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 # Individual libfuzzer tests that didn't find their home yet. | 5 # Individual libfuzzer tests that didn't find their home yet. |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 | 10 |
| 11 # root BUILD depends on this target. Needed for package discovery | 11 # root BUILD depends on this target. Needed for package discovery |
| 12 group("fuzzers") { | 12 group("fuzzers") { |
| 13 deps = [ | |
| 14 "//third_party/qcms:fuzzers", | |
|
Oliver Chang
2017/04/11 19:46:47
chiming in here. is this explicit dependency neces
Noel Gordon
2017/04/12 00:13:57
Ok, moved it there.
| |
| 15 ] | |
| 13 } | 16 } |
| 14 | 17 |
| 15 fuzzer_test("empty_fuzzer") { | 18 fuzzer_test("empty_fuzzer") { |
| 16 sources = [ | 19 sources = [ |
| 17 "empty_fuzzer.cc", | 20 "empty_fuzzer.cc", |
| 18 ] | 21 ] |
| 19 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 22 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 20 } | 23 } |
| 21 | 24 |
| 22 fuzzer_test("courgette_fuzzer") { | 25 fuzzer_test("courgette_fuzzer") { |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 453 } | 456 } |
| 454 | 457 |
| 455 fuzzer_test("hash_fuzzer") { | 458 fuzzer_test("hash_fuzzer") { |
| 456 sources = [ | 459 sources = [ |
| 457 "hash_fuzzer.cc", | 460 "hash_fuzzer.cc", |
| 458 ] | 461 ] |
| 459 deps = [ | 462 deps = [ |
| 460 "//base", | 463 "//base", |
| 461 ] | 464 ] |
| 462 } | 465 } |
| OLD | NEW |