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/toolchain/toolchain.gni") | 6 import("//build/toolchain/toolchain.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
10 import("//third_party/WebKit/Source/bindings/bindings.gni") | 10 import("//third_party/WebKit/Source/bindings/bindings.gni") |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", | 405 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", |
406 ] | 406 ] |
407 outputs = [ | 407 outputs = [ |
408 "$blink_core_output_dir/ComputedStyleBase.cpp", | 408 "$blink_core_output_dir/ComputedStyleBase.cpp", |
409 "$blink_core_output_dir/ComputedStyleBase.h", | 409 "$blink_core_output_dir/ComputedStyleBase.h", |
410 "$blink_core_output_dir/ComputedStyleBaseConstants.h", | 410 "$blink_core_output_dir/ComputedStyleBaseConstants.h", |
411 ] | 411 ] |
412 } | 412 } |
413 | 413 |
414 css_properties("make_core_generated_css_property_apis") { | 414 css_properties("make_core_generated_css_property_apis") { |
415 script = "../build/scripts/make_css_property_apis.py" | 415 script = "../build/scripts/make_css_property_apis.py" |
416 other_inputs = [ | 416 other_inputs = [ |
417 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl", | 417 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl", |
418 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", | 418 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", |
419 ] | 419 ] |
420 outputs = [ | 420 in_files = [ |
421 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", | 421 "css/properties/CSSPropertyAPIMethods.json5", |
422 ] | 422 ] |
| 423 outputs = [ |
| 424 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", |
| 425 ] |
423 } | 426 } |
424 | 427 |
425 css_properties("make_core_generated_css_property_names") { | 428 css_properties("make_core_generated_css_property_names") { |
426 script = "../build/scripts/make_css_property_names.py" | 429 script = "../build/scripts/make_css_property_names.py" |
427 outputs = [ | 430 outputs = [ |
428 "$blink_core_output_dir/CSSPropertyNames.cpp", | 431 "$blink_core_output_dir/CSSPropertyNames.cpp", |
429 "$blink_core_output_dir/CSSPropertyNames.h", | 432 "$blink_core_output_dir/CSSPropertyNames.h", |
430 ] | 433 ] |
431 } | 434 } |
432 | 435 |
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1305 sources = [ | 1308 sources = [ |
1306 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1309 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1307 ] | 1310 ] |
1308 deps = [ | 1311 deps = [ |
1309 ":core", | 1312 ":core", |
1310 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1313 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1311 ] | 1314 ] |
1312 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1315 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1313 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1316 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1314 } | 1317 } |
OLD | NEW |