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 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 fuzzer_test("language_detection_fuzzer") { | 74 fuzzer_test("language_detection_fuzzer") { |
| 75 sources = [ | 75 sources = [ |
| 76 "language_detection_fuzzer.cc", | 76 "language_detection_fuzzer.cc", |
| 77 ] | 77 ] |
| 78 deps = [ | 78 deps = [ |
| 79 "//base", | 79 "//base", |
| 80 "//components/translate/core/language_detection:language_detection", | 80 "//components/translate/core/language_detection:language_detection", |
| 81 ] | 81 ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 fuzzer_test("media_pipeline_fuzzer") { | |
| 85 sources = [ | |
| 86 "media_pipeline_fuzzer.cc", | |
| 87 ] | |
| 88 deps = [ | |
| 89 "//base", | |
| 90 "//media", | |
| 91 "//media/test:pipeline_integration_test_base", | |
| 92 | |
| 93 # TODO(dalecurtis): Required since the gmock header is included in the | |
| 94 # header for pipeline_integration_test_base.h. This should be | |
| 95 # moved into the .cc file to avoid the extra dependency here. | |
| 96 "//testing/gmock", | |
| 97 "//ui/gfx:test_support", | |
|
xhwang
2016/03/02 00:57:04
Dale: Without //ui/gfx:test_support, I am getting
| |
| 98 ] | |
| 99 } | |
| 100 | |
| 84 if (proprietary_codecs) { | 101 if (proprietary_codecs) { |
| 85 fuzzer_test("mp4_box_reader_fuzzer") { | 102 fuzzer_test("mp4_box_reader_fuzzer") { |
| 86 sources = [ | 103 sources = [ |
| 87 "mp4_box_reader_fuzzer.cc", | 104 "mp4_box_reader_fuzzer.cc", |
| 88 ] | 105 ] |
| 89 deps = [ | 106 deps = [ |
| 90 "//base", | 107 "//base", |
| 91 "//media", | 108 "//media", |
| 92 ] | 109 ] |
| 93 } | 110 } |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 349 ] | 366 ] |
| 350 } | 367 } |
| 351 | 368 |
| 352 fuzzer_test("v8_regexp_parser_fuzzer") { | 369 fuzzer_test("v8_regexp_parser_fuzzer") { |
| 353 sources = [] | 370 sources = [] |
| 354 deps = [ | 371 deps = [ |
| 355 "//v8:regexp_fuzzer", | 372 "//v8:regexp_fuzzer", |
| 356 ] | 373 ] |
| 357 dict = "dicts/regexp.dict" | 374 dict = "dicts/regexp.dict" |
| 358 } | 375 } |
| OLD | NEW |