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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
528 "$blink_core_output_dir/css/properties/CSSPropertyAPIImage.h", | 528 "$blink_core_output_dir/css/properties/CSSPropertyAPIImage.h", |
529 "$blink_core_output_dir/css/properties/CSSPropertyAPIOffsetRotate.h", | 529 "$blink_core_output_dir/css/properties/CSSPropertyAPIOffsetRotate.h", |
530 "$blink_core_output_dir/css/properties/CSSPropertyAPIOpacity.h", | 530 "$blink_core_output_dir/css/properties/CSSPropertyAPIOpacity.h", |
531 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBoxFlexGroup.h", | 531 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBoxFlexGroup.h", |
532 "$blink_core_output_dir/css/properties/CSSPropertyAPIMargin.h", | 532 "$blink_core_output_dir/css/properties/CSSPropertyAPIMargin.h", |
533 "$blink_core_output_dir/css/properties/CSSPropertyAPIShapeMargin.h", | 533 "$blink_core_output_dir/css/properties/CSSPropertyAPIShapeMargin.h", |
534 "$blink_core_output_dir/css/properties/CSSPropertyAPIMarker.h", | 534 "$blink_core_output_dir/css/properties/CSSPropertyAPIMarker.h", |
535 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBoxFlex.h", | 535 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBoxFlex.h", |
536 "$blink_core_output_dir/css/properties/CSSPropertyAPIGridAutoLine.h", | 536 "$blink_core_output_dir/css/properties/CSSPropertyAPIGridAutoLine.h", |
537 "$blink_core_output_dir/css/properties/CSSPropertyAPIOffsetAnchor.h", | 537 "$blink_core_output_dir/css/properties/CSSPropertyAPIOffsetAnchor.h", |
538 "$blink_core_output_dir/css/properties/CSSPropertyAPIFontFamily.h", | |
meade_UTC10
2017/03/09 05:48:40
Nit: should these be in alphabetical order?
| |
538 ] | 539 ] |
539 } | 540 } |
540 | 541 |
541 css_properties("make_core_generated_css_property_names") { | 542 css_properties("make_core_generated_css_property_names") { |
542 script = "../build/scripts/make_css_property_names.py" | 543 script = "../build/scripts/make_css_property_names.py" |
543 outputs = [ | 544 outputs = [ |
544 "$blink_core_output_dir/CSSPropertyNames.cpp", | 545 "$blink_core_output_dir/CSSPropertyNames.cpp", |
545 "$blink_core_output_dir/CSSPropertyNames.h", | 546 "$blink_core_output_dir/CSSPropertyNames.h", |
546 ] | 547 ] |
547 } | 548 } |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1436 sources = [ | 1437 sources = [ |
1437 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1438 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1438 ] | 1439 ] |
1439 deps = [ | 1440 deps = [ |
1440 ":core", | 1441 ":core", |
1441 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1442 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1442 ] | 1443 ] |
1443 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1444 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1444 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1445 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1445 } | 1446 } |
OLD | NEW |