| OLD | NEW |
| 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("//build/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/split_static_library.gni") | 7 import("//build/split_static_library.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//third_party/WebKit/Source/bindings/bindings.gni") | 9 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 deps = [ | 207 deps = [ |
| 208 ":core", | 208 ":core", |
| 209 ":generated_testing_idls", | 209 ":generated_testing_idls", |
| 210 "//third_party/WebKit/Source/bindings/core/v8:testing", | 210 "//third_party/WebKit/Source/bindings/core/v8:testing", |
| 211 ] | 211 ] |
| 212 | 212 |
| 213 sources = [ | 213 sources = [ |
| 214 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", | 214 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", |
| 215 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", | 215 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", |
| 216 "testing/DeathAwareScriptWrappable.cpp", | |
| 217 "testing/DeathAwareScriptWrappable.h", | |
| 218 "testing/DictionaryTest.cpp", | 216 "testing/DictionaryTest.cpp", |
| 219 "testing/DictionaryTest.h", | 217 "testing/DictionaryTest.h", |
| 220 "testing/DummyPageHolder.cpp", | 218 "testing/DummyPageHolder.cpp", |
| 221 "testing/DummyPageHolder.h", | 219 "testing/DummyPageHolder.h", |
| 222 "testing/GCObservation.cpp", | 220 "testing/GCObservation.cpp", |
| 223 "testing/GCObservation.h", | 221 "testing/GCObservation.h", |
| 224 "testing/GarbageCollectedScriptWrappable.cpp", | 222 "testing/GarbageCollectedScriptWrappable.cpp", |
| 225 "testing/GarbageCollectedScriptWrappable.h", | 223 "testing/GarbageCollectedScriptWrappable.h", |
| 226 "testing/InternalSettings.cpp", | 224 "testing/InternalSettings.cpp", |
| 227 "testing/InternalSettings.h", | 225 "testing/InternalSettings.h", |
| (...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 sources = [ | 1239 sources = [ |
| 1242 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1240 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1243 "html/parser/TextResourceDecoderForFuzzing.h", | 1241 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1244 ] | 1242 ] |
| 1245 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1243 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1246 deps = [ | 1244 deps = [ |
| 1247 ":core", | 1245 ":core", |
| 1248 "../platform:blink_fuzzer_test_support", | 1246 "../platform:blink_fuzzer_test_support", |
| 1249 ] | 1247 ] |
| 1250 } | 1248 } |
| OLD | NEW |