| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "--output_dir", | 374 "--output_dir", |
| 375 "$rel_blink_core_gen_dir/testing", | 375 "$rel_blink_core_gen_dir/testing", |
| 376 ] | 376 ] |
| 377 } | 377 } |
| 378 | 378 |
| 379 action("generated_testing_idls_internal_runtime_flags") { | 379 action("generated_testing_idls_internal_runtime_flags") { |
| 380 script = "../build/scripts/make_internal_runtime_flags.py" | 380 script = "../build/scripts/make_internal_runtime_flags.py" |
| 381 | 381 |
| 382 inputs = scripts_for_in_files + [ | 382 inputs = scripts_for_in_files + [ |
| 383 "../build/scripts/make_internal_runtime_flags.py", | 383 "../build/scripts/make_internal_runtime_flags.py", |
| 384 "../platform/RuntimeEnabledFeatures.in", | 384 "../platform/RuntimeEnabledFeatures.json5", |
| 385 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl", | 385 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl", |
| 386 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl", | 386 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl", |
| 387 ] | 387 ] |
| 388 outputs = [ | 388 outputs = [ |
| 389 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", | 389 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", |
| 390 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", | 390 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", |
| 391 ] | 391 ] |
| 392 | 392 |
| 393 args = [ | 393 args = [ |
| 394 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), | 394 rebase_path("../platform/RuntimeEnabledFeatures.json5", root_build_dir), |
| 395 "--output_dir", | 395 "--output_dir", |
| 396 "$rel_blink_core_gen_dir/testing", | 396 "$rel_blink_core_gen_dir/testing", |
| 397 ] | 397 ] |
| 398 } | 398 } |
| 399 | 399 |
| 400 css_properties("make_core_generated_computed_style_base") { | 400 css_properties("make_core_generated_computed_style_base") { |
| 401 script = "../build/scripts/make_computed_style_base.py" | 401 script = "../build/scripts/make_computed_style_base.py" |
| 402 other_inputs = [ | 402 other_inputs = [ |
| 403 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl", | 403 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl", |
| 404 "../build/scripts/templates/ComputedStyleBase.h.tmpl", | 404 "../build/scripts/templates/ComputedStyleBase.h.tmpl", |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 } | 797 } |
| 798 | 798 |
| 799 deps = make_core_generated_deps | 799 deps = make_core_generated_deps |
| 800 } | 800 } |
| 801 | 801 |
| 802 action("make_core_generated_origin_trials") { | 802 action("make_core_generated_origin_trials") { |
| 803 script = "../build/scripts/make_origin_trials.py" | 803 script = "../build/scripts/make_origin_trials.py" |
| 804 | 804 |
| 805 inputs = scripts_for_in_files + [ | 805 inputs = scripts_for_in_files + [ |
| 806 "../build/scripts/make_origin_trials.py", | 806 "../build/scripts/make_origin_trials.py", |
| 807 "../platform/RuntimeEnabledFeatures.in", | 807 "../platform/RuntimeEnabledFeatures.json5", |
| 808 "../build/scripts/templates/OriginTrials.cpp.tmpl", | 808 "../build/scripts/templates/OriginTrials.cpp.tmpl", |
| 809 "../build/scripts/templates/OriginTrials.h.tmpl", | 809 "../build/scripts/templates/OriginTrials.h.tmpl", |
| 810 ] | 810 ] |
| 811 outputs = [ | 811 outputs = [ |
| 812 "$blink_core_output_dir/origin_trials/OriginTrials.cpp", | 812 "$blink_core_output_dir/origin_trials/OriginTrials.cpp", |
| 813 "$blink_core_output_dir/origin_trials/OriginTrials.h", | 813 "$blink_core_output_dir/origin_trials/OriginTrials.h", |
| 814 ] | 814 ] |
| 815 | 815 |
| 816 args = [ | 816 args = [ |
| 817 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), | 817 rebase_path("../platform/RuntimeEnabledFeatures.json5", root_build_dir), |
| 818 "--output_dir", | 818 "--output_dir", |
| 819 "$rel_blink_core_gen_dir/origin_trials", | 819 "$rel_blink_core_gen_dir/origin_trials", |
| 820 ] | 820 ] |
| 821 if (is_mac && !use_system_xcode) { | 821 if (is_mac && !use_system_xcode) { |
| 822 args += [ | 822 args += [ |
| 823 "--developer_dir", | 823 "--developer_dir", |
| 824 hermetic_xcode_path, | 824 hermetic_xcode_path, |
| 825 ] | 825 ] |
| 826 } | 826 } |
| 827 } | 827 } |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1304 sources = [ | 1304 sources = [ |
| 1305 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1305 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1306 ] | 1306 ] |
| 1307 deps = [ | 1307 deps = [ |
| 1308 ":core", | 1308 ":core", |
| 1309 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1309 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1310 ] | 1310 ] |
| 1311 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1311 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1312 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1312 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1313 } | 1313 } |
| OLD | NEW |