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

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

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 if (is_android && use_openmax_dl_fft) { 42 if (is_android && use_openmax_dl_fft) {
43 include_dirs += [ "//third_party/openmax_dl" ] 43 include_dirs += [ "//third_party/openmax_dl" ]
44 } 44 }
45 } 45 }
46 46
47 # GYP version: WebKit/Source/core/core.gyp:webcore_generated 47 # GYP version: WebKit/Source/core/core.gyp:webcore_generated
48 source_set("generated") { 48 source_set("generated") {
49 deps = [ 49 deps = [
50 ":make_core_generated", 50 ":make_core_generated",
51 ":prerequisites", 51 ":prerequisites",
52 "inspector:protocol_sources",
53 "inspector:instrumentation_sources",
54 "//gin", 52 "//gin",
55 "//skia", 53 "//skia",
54 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
56 "//third_party/iccjpeg", 55 "//third_party/iccjpeg",
57 "//third_party/libpng", 56 "//third_party/libpng",
58 "//third_party/libwebp", 57 "//third_party/libwebp",
59 "//third_party/libxml", 58 "//third_party/libxml",
60 "//third_party/libxslt", 59 "//third_party/libxslt",
61 "//third_party/npapi", 60 "//third_party/npapi",
62 "//third_party/qcms", 61 "//third_party/qcms",
63 "//third_party/sqlite", 62 "//third_party/sqlite",
64 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", 63 "inspector:instrumentation_sources",
64 "inspector:protocol_sources",
65 65
66 # FIXME: don't depend on bindings/modules http://crbug.com/358074 66 # FIXME: don't depend on bindings/modules http://crbug.com/358074
67 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 67 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
68 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 68 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
69 "//third_party/WebKit/Source/platform:make_platform_generated", 69 "//third_party/WebKit/Source/platform:make_platform_generated",
70 "//third_party/WebKit/Source/wtf", 70 "//third_party/WebKit/Source/wtf",
71 "//url", 71 "//url",
72 "//v8", 72 "//v8",
73 ] 73 ]
74 } 74 }
75 75
76 # GYP version: WebKit/Source/core/core.gyp:webcore_prerequisites 76 # GYP version: WebKit/Source/core/core.gyp:webcore_prerequisites
77 source_set("prerequisites") { 77 source_set("prerequisites") {
78 public_deps = [ 78 public_deps = [
79 "//third_party/WebKit/Source/wtf",
80 "//gpu/command_buffer/client:gles2_c_lib", 79 "//gpu/command_buffer/client:gles2_c_lib",
81 "//skia", 80 "//skia",
81 "//third_party/WebKit/Source/wtf",
82 "//third_party/angle:translator", 82 "//third_party/angle:translator",
83 "//third_party/iccjpeg", 83 "//third_party/iccjpeg",
84 "//third_party/icu", 84 "//third_party/icu",
85 "//third_party/libpng", 85 "//third_party/libpng",
86 "//third_party/libwebp", 86 "//third_party/libwebp",
87 "//third_party/libxml", 87 "//third_party/libxml",
88 "//third_party/libxslt", 88 "//third_party/libxslt",
89 "//third_party/npapi", 89 "//third_party/npapi",
90 "//third_party/ots", 90 "//third_party/ots",
91 "//third_party/qcms", 91 "//third_party/qcms",
92 "//third_party/snappy", 92 "//third_party/snappy",
93 "//third_party/sqlite", 93 "//third_party/sqlite",
94 "//third_party/zlib", 94 "//third_party/zlib",
95 "//url", 95 "//url",
96 "//v8", 96 "//v8",
97 ] 97 ]
98 deps = [ 98 deps = [
99 ":make_core_generated", 99 ":make_core_generated",
100 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
101 "inspector:instrumentation_sources",
100 "inspector:protocol_sources", 102 "inspector:protocol_sources",
101 "inspector:instrumentation_sources",
102 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
103 103
104 # FIXME: don't depend on bindings_modules http://crbug.com/358074 104 # FIXME: don't depend on bindings_modules http://crbug.com/358074
105 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 105 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
106 "//third_party/WebKit/Source/platform", 106 "//third_party/WebKit/Source/platform",
107 ] 107 ]
108 108
109 public_configs = [ 109 public_configs = [
110 ":core_include_dirs", 110 ":core_include_dirs",
111 "//third_party/WebKit/Source:config", 111 "//third_party/WebKit/Source:config",
112 "//third_party/WebKit/Source:inside_blink", 112 "//third_party/WebKit/Source:inside_blink",
(...skipping 17 matching lines...) Expand all
130 source_set("core") { 130 source_set("core") {
131 visibility = [] # Allow re-assignment of list. 131 visibility = [] # Allow re-assignment of list.
132 visibility = [ "//third_party/WebKit/*" ] 132 visibility = [ "//third_party/WebKit/*" ]
133 133
134 configs -= core_config_remove 134 configs -= core_config_remove
135 configs += core_config_add 135 configs += core_config_add
136 136
137 public_deps = [ 137 public_deps = [
138 ":core_generated", 138 ":core_generated",
139 "//skia", 139 "//skia",
140 "//third_party/WebKit/Source/platform",
141 "//third_party/WebKit/Source/wtf",
140 "//third_party/npapi", 142 "//third_party/npapi",
141 "//third_party/qcms", 143 "//third_party/qcms",
142 "//third_party/WebKit/Source/platform",
143 "//third_party/WebKit/Source/wtf",
144 "//url", 144 "//url",
145 "//v8", 145 "//v8",
146 ] 146 ]
147 deps = [ 147 deps = [
148 ":dom", 148 ":dom",
149 ":html", 149 ":html",
150 ":remaining", 150 ":remaining",
151 ":rendering", 151 ":rendering",
152 ":svg", 152 ":svg",
153 ] 153 ]
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 ] 416 ]
417 417
418 configs -= core_config_remove 418 configs -= core_config_remove
419 configs += core_config_add 419 configs += core_config_add
420 420
421 configs += [ "..:inside_blink" ] 421 configs += [ "..:inside_blink" ]
422 422
423 public_deps = [ 423 public_deps = [
424 ":make_core_generated", 424 ":make_core_generated",
425 ":prerequisites", 425 ":prerequisites",
426 "inspector:protocol_sources",
427 "inspector:instrumentation_sources",
428 "//gin", 426 "//gin",
429 "//skia", 427 "//skia",
428 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
430 "//third_party/iccjpeg", 429 "//third_party/iccjpeg",
431 "//third_party/libpng", 430 "//third_party/libpng",
432 "//third_party/libwebp", 431 "//third_party/libwebp",
433 "//third_party/libxml", 432 "//third_party/libxml",
434 "//third_party/libxslt", 433 "//third_party/libxslt",
435 "//third_party/npapi", 434 "//third_party/npapi",
436 "//third_party/qcms", 435 "//third_party/qcms",
437 "//third_party/sqlite", 436 "//third_party/sqlite",
438 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", 437 "inspector:instrumentation_sources",
438 "inspector:protocol_sources",
439 439
440 # FIXME: don't depend on bindings/modules http://crbug.com/358074 440 # FIXME: don't depend on bindings/modules http://crbug.com/358074
441 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 441 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
442 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 442 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
443 "//third_party/WebKit/Source/platform:make_platform_generated", 443 "//third_party/WebKit/Source/platform:make_platform_generated",
444 "//third_party/WebKit/Source/wtf", 444 "//third_party/WebKit/Source/wtf",
445 "//url", 445 "//url",
446 "//v8", 446 "//v8",
447 ] 447 ]
448 448
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 sources = core_event_idl_files 489 sources = core_event_idl_files
490 output_file = "core/EventInterfaces.in" 490 output_file = "core/EventInterfaces.in"
491 } 491 }
492 492
493 # generated_testing_idls ------------------------------------------------------- 493 # generated_testing_idls -------------------------------------------------------
494 494
495 # GYP version: WebKit/Source/core/core_generated.gyp:generated_testing_idls 495 # GYP version: WebKit/Source/core/core_generated.gyp:generated_testing_idls
496 group("generated_testing_idls") { 496 group("generated_testing_idls") {
497 public_deps = [ 497 public_deps = [
498 ":generated_settings_macros", 498 ":generated_settings_macros",
499 ":generated_testing_idls_internal_runtime_flags",
499 ":generated_testing_idls_settings", 500 ":generated_testing_idls_settings",
500 ":generated_testing_idls_internal_runtime_flags",
501 ] 501 ]
502 } 502 }
503 503
504 # "Settings" action in generated_testing_idls from GYP. 504 # "Settings" action in generated_testing_idls from GYP.
505 action("generated_settings_macros") { 505 action("generated_settings_macros") {
506 script = "../build/scripts/make_settings.py" 506 script = "../build/scripts/make_settings.py"
507 507
508 inputs = scripts_for_in_files + [ 508 inputs = scripts_for_in_files + [
509 "../build/scripts/make_settings.py", 509 "../build/scripts/make_settings.py",
510 "../build/scripts/templates/SettingsMacros.h.tmpl", 510 "../build/scripts/templates/SettingsMacros.h.tmpl",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 "--output_dir", 565 "--output_dir",
566 "$rel_blink_core_gen_dir/testing", 566 "$rel_blink_core_gen_dir/testing",
567 ] 567 ]
568 } 568 }
569 569
570 # make_core_generated ---------------------------------------------------------- 570 # make_core_generated ----------------------------------------------------------
571 571
572 # GYP version: WebKit/Source/core/core_generated.gyp:make_core_generated 572 # GYP version: WebKit/Source/core/core_generated.gyp:make_core_generated
573 group("make_core_generated") { 573 group("make_core_generated") {
574 public_deps = [ 574 public_deps = [
575 ":make_core_generated_private_script", 575 ":make_core_generated_bison",
576 ":make_core_generated_private_script_for_testing", 576 ":make_core_generated_css_property_metadata",
577 ":make_core_generated_html_entity_table",
578 ":make_core_generated_css_property_names", 577 ":make_core_generated_css_property_names",
579 ":make_core_generated_css_tokenizer_codepoints", 578 ":make_core_generated_css_tokenizer_codepoints",
579 ":make_core_generated_css_value_keywords",
580 ":make_core_generated_event_factory",
581 ":make_core_generated_event_names",
582 ":make_core_generated_event_target_names",
583 ":make_core_generated_event_type_names",
584 ":make_core_generated_fetch_initiator_type_names",
585 ":make_core_generated_html_element_factory",
586 ":make_core_generated_html_element_lookup_trie",
587 ":make_core_generated_html_element_type_helpers",
588 ":make_core_generated_html_entity_table",
589 ":make_core_generated_html_tokenizer_names",
590 ":make_core_generated_input_type_names",
591 ":make_core_generated_make_token_matcher_for_viewport",
592 ":make_core_generated_math_ml_names",
580 ":make_core_generated_media_feature_names", 593 ":make_core_generated_media_feature_names",
581 ":make_core_generated_media_features", 594 ":make_core_generated_media_features",
582 ":make_core_generated_media_type_names", 595 ":make_core_generated_media_type_names",
596 ":make_core_generated_private_script",
597 ":make_core_generated_private_script_for_testing",
598 ":make_core_generated_style_builder",
583 ":make_core_generated_style_property_shorthand", 599 ":make_core_generated_style_property_shorthand",
584 ":make_core_generated_style_builder", 600 ":make_core_generated_svg_element_type_helpers",
585 ":make_core_generated_css_property_metadata",
586 ":make_core_generated_css_value_keywords",
587 ":make_core_generated_html_element_factory",
588 ":make_core_generated_html_element_type_helpers",
589 ":make_core_generated_svg_names", 601 ":make_core_generated_svg_names",
590 ":make_core_generated_svg_element_type_helpers",
591 ":make_core_generated_event_factory",
592 ":make_core_generated_event_names",
593 ":make_core_generated_event_target_names",
594 ":make_core_generated_math_ml_names",
595 ":make_core_generated_fetch_initiator_type_names",
596 ":make_core_generated_event_type_names",
597 ":make_core_generated_html_tokenizer_names",
598 ":make_core_generated_input_type_names",
599 ":make_core_generated_xlink_names", 602 ":make_core_generated_xlink_names",
603 ":make_core_generated_xml_names",
600 ":make_core_generated_xml_ns_names", 604 ":make_core_generated_xml_ns_names",
601 ":make_core_generated_xml_names",
602 ":make_core_generated_make_token_matcher_for_viewport",
603 ":make_core_generated_html_element_lookup_trie",
604 ":make_core_generated_bison",
605 ] 605 ]
606 } 606 }
607 607
608 # "CSSPropertyNames" in make_core_generated from GYP. 608 # "CSSPropertyNames" in make_core_generated from GYP.
609 css_properties("make_core_generated_css_property_names") { 609 css_properties("make_core_generated_css_property_names") {
610 script = "../build/scripts/make_css_property_names.py" 610 script = "../build/scripts/make_css_property_names.py"
611 outputs = [ 611 outputs = [
612 "$blink_core_output_dir/CSSPropertyNames.cpp", 612 "$blink_core_output_dir/CSSPropertyNames.cpp",
613 "$blink_core_output_dir/CSSPropertyNames.h", 613 "$blink_core_output_dir/CSSPropertyNames.h",
614 ] 614 ]
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 "$blink_core_output_dir/{{source_name_part}}.h", 1000 "$blink_core_output_dir/{{source_name_part}}.h",
1001 ] 1001 ]
1002 args = [ 1002 args = [
1003 "{{source}}", 1003 "{{source}}",
1004 rel_blink_core_gen_dir, 1004 rel_blink_core_gen_dir,
1005 bison_exe, 1005 bison_exe,
1006 ] 1006 ]
1007 1007
1008 deps = make_core_generated_deps 1008 deps = make_core_generated_deps
1009 } 1009 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698