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

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

Issue 2702173002: Generate mappings between CSSValueID and ComputedStyle enums. (Closed)
Patch Set: Forgot case Created 3 years, 9 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
406 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", 406 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl",
407 "../build/scripts/templates/CSSValueIDMappingsGenerated.h.tmpl",
407 ] 408 ]
408 outputs = [ 409 outputs = [
409 "$blink_core_output_dir/ComputedStyleBase.cpp", 410 "$blink_core_output_dir/ComputedStyleBase.cpp",
410 "$blink_core_output_dir/ComputedStyleBase.h", 411 "$blink_core_output_dir/ComputedStyleBase.h",
411 "$blink_core_output_dir/ComputedStyleBaseConstants.h", 412 "$blink_core_output_dir/ComputedStyleBaseConstants.h",
413 "$blink_core_output_dir/CSSValueIDMappingsGenerated.h",
412 ] 414 ]
413 } 415 }
414 416
415 # TODO(shend): Need a better way to specify generated output files 417 # TODO(shend): Need a better way to specify generated output files
416 css_properties("make_core_generated_css_property_apis") { 418 css_properties("make_core_generated_css_property_apis") {
417 script = "../build/scripts/make_css_property_apis.py" 419 script = "../build/scripts/make_css_property_apis.py"
418 other_inputs = [ 420 other_inputs = [
419 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl", 421 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl",
420 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", 422 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl",
421 "../build/scripts/templates/CSSPropertyAPI.h.tmpl", 423 "../build/scripts/templates/CSSPropertyAPI.h.tmpl",
(...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 sources = [ 1423 sources = [
1422 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1424 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1423 ] 1425 ]
1424 deps = [ 1426 deps = [
1425 ":core", 1427 ":core",
1426 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1428 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1427 ] 1429 ]
1428 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1430 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1429 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1431 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1430 } 1432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698