| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 | 498 |
| 499 in_files = [ "svg/SVGTagNames.in" ] | 499 in_files = [ "svg/SVGTagNames.in" ] |
| 500 other_inputs = make_element_type_helpers_files | 500 other_inputs = make_element_type_helpers_files |
| 501 outputs = [ | 501 outputs = [ |
| 502 "$blink_core_output_dir/SVGElementTypeHelpers.h", | 502 "$blink_core_output_dir/SVGElementTypeHelpers.h", |
| 503 ] | 503 ] |
| 504 } | 504 } |
| 505 | 505 |
| 506 # make_event_factory ----------------------------------------------------------- | 506 # make_event_factory ----------------------------------------------------------- |
| 507 | 507 |
| 508 process_in_files("make_core_generated_event_factory") { | 508 make_event_factory("make_core_generated_event_factory") { |
| 509 script = "../build/scripts/make_event_factory.py" | |
| 510 | |
| 511 in_files = [ | 509 in_files = [ |
| 512 "$blink_core_output_dir/EventInterfaces.in", | 510 "$blink_core_output_dir/EventInterfaces.in", |
| 513 "events/EventAliases.in", | 511 "events/EventAliases.in", |
| 514 ] | 512 ] |
| 515 other_inputs = make_event_factory_files | |
| 516 outputs = [ | 513 outputs = [ |
| 517 "$blink_core_output_dir/Event.cpp", | 514 "$blink_core_output_dir/Event.cpp", |
| 518 "$blink_core_output_dir/EventHeaders.h", | 515 "$blink_core_output_dir/EventHeaders.h", |
| 519 ] | 516 ] |
| 520 } | 517 } |
| 521 | 518 |
| 522 # make_names ------------------------------------------------------------------- | 519 # make_names ------------------------------------------------------------------- |
| 523 | 520 |
| 524 process_in_files("make_core_generated_media_feature_names") { | 521 process_in_files("make_core_generated_media_feature_names") { |
| 525 script = "../build/scripts/make_media_feature_names.py" | 522 script = "../build/scripts/make_media_feature_names.py" |
| (...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 sources = [ | 1232 sources = [ |
| 1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1233 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1237 "html/parser/TextResourceDecoderForFuzzing.h", | 1234 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1238 ] | 1235 ] |
| 1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1236 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1240 deps = [ | 1237 deps = [ |
| 1241 ":core", | 1238 ":core", |
| 1242 "../platform:blink_fuzzer_test_support", | 1239 "../platform:blink_fuzzer_test_support", |
| 1243 ] | 1240 ] |
| 1244 } | 1241 } |
| OLD | NEW |