Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2656163005: Convert RuntimeEnabledFeatures.in config file to JSON format. (Closed)
Patch Set: Rebase and add MediaCaptureDepth, MojoJS Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 "--output_dir", 375 "--output_dir",
376 "$rel_blink_core_gen_dir/testing", 376 "$rel_blink_core_gen_dir/testing",
377 ] 377 ]
378 } 378 }
379 379
380 action("generated_testing_idls_internal_runtime_flags") { 380 action("generated_testing_idls_internal_runtime_flags") {
381 script = "../build/scripts/make_internal_runtime_flags.py" 381 script = "../build/scripts/make_internal_runtime_flags.py"
382 382
383 inputs = scripts_for_in_files + [ 383 inputs = scripts_for_in_files + [
384 "../build/scripts/make_internal_runtime_flags.py", 384 "../build/scripts/make_internal_runtime_flags.py",
385 "../platform/RuntimeEnabledFeatures.in", 385 "../platform/RuntimeEnabledFeatures.json5",
386 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl", 386 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl",
387 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl", 387 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl",
388 ] 388 ]
389 outputs = [ 389 outputs = [
390 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", 390 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl",
391 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", 391 "$blink_core_output_dir/testing/InternalRuntimeFlags.h",
392 ] 392 ]
393 393
394 args = [ 394 args = [
395 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), 395 rebase_path("../platform/RuntimeEnabledFeatures.json5", root_build_dir),
396 "--output_dir", 396 "--output_dir",
397 "$rel_blink_core_gen_dir/testing", 397 "$rel_blink_core_gen_dir/testing",
398 ] 398 ]
399 } 399 }
400 400
401 css_properties("make_core_generated_computed_style_base") { 401 css_properties("make_core_generated_computed_style_base") {
402 script = "../build/scripts/make_computed_style_base.py" 402 script = "../build/scripts/make_computed_style_base.py"
403 other_inputs = [ 403 other_inputs = [
404 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl", 404 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl",
405 "../build/scripts/templates/ComputedStyleBase.h.tmpl", 405 "../build/scripts/templates/ComputedStyleBase.h.tmpl",
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 } 798 }
799 799
800 deps = make_core_generated_deps 800 deps = make_core_generated_deps
801 } 801 }
802 802
803 action("make_core_generated_origin_trials") { 803 action("make_core_generated_origin_trials") {
804 script = "../build/scripts/make_origin_trials.py" 804 script = "../build/scripts/make_origin_trials.py"
805 805
806 inputs = scripts_for_in_files + [ 806 inputs = scripts_for_in_files + [
807 "../build/scripts/make_origin_trials.py", 807 "../build/scripts/make_origin_trials.py",
808 "../platform/RuntimeEnabledFeatures.in", 808 "../platform/RuntimeEnabledFeatures.json5",
809 "../build/scripts/templates/OriginTrials.cpp.tmpl", 809 "../build/scripts/templates/OriginTrials.cpp.tmpl",
810 "../build/scripts/templates/OriginTrials.h.tmpl", 810 "../build/scripts/templates/OriginTrials.h.tmpl",
811 ] 811 ]
812 outputs = [ 812 outputs = [
813 "$blink_core_output_dir/origin_trials/OriginTrials.cpp", 813 "$blink_core_output_dir/origin_trials/OriginTrials.cpp",
814 "$blink_core_output_dir/origin_trials/OriginTrials.h", 814 "$blink_core_output_dir/origin_trials/OriginTrials.h",
815 ] 815 ]
816 816
817 args = [ 817 args = [
818 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), 818 rebase_path("../platform/RuntimeEnabledFeatures.json5", root_build_dir),
819 "--output_dir", 819 "--output_dir",
820 "$rel_blink_core_gen_dir/origin_trials", 820 "$rel_blink_core_gen_dir/origin_trials",
821 ] 821 ]
822 if (is_mac && !use_system_xcode) { 822 if (is_mac && !use_system_xcode) {
823 args += [ 823 args += [
824 "--developer_dir", 824 "--developer_dir",
825 hermetic_xcode_path, 825 hermetic_xcode_path,
826 ] 826 ]
827 } 827 }
828 } 828 }
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 sources = [ 1306 sources = [
1307 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1307 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1308 ] 1308 ]
1309 deps = [ 1309 deps = [
1310 ":core", 1310 ":core",
1311 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1311 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1312 ] 1312 ]
1313 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1313 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1314 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1314 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1315 } 1315 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698