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

Side by Side Diff: sky/engine/core/BUILD.gn

Issue 678703004: Remove a bunch of dead files found by missing_from_gn (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/build/scripts/check_objc_rename.sh ('k') | sky/engine/core/core.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//sky/engine/bindings/scripts/scripts.gni") 5 import("//sky/engine/bindings/scripts/scripts.gni")
6 import("//sky/engine/build/scripts/scripts.gni") 6 import("//sky/engine/build/scripts/scripts.gni")
7 import("//sky/engine/core/core.gni") 7 import("//sky/engine/core/core.gni")
8 8
9 visibility = ["//sky/engine/*"] 9 visibility = ["//sky/engine/*"]
10 10
11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) 11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir)
12 12
13 source_set("libraries") { 13 source_set("libraries") {
14 deps = [ 14 deps = [
15 "//base:base",
15 "//gin", 16 "//gin",
16 "//gpu/command_buffer/client:gles2_c_lib", 17 "//gpu/command_buffer/client:gles2_c_lib",
18 "//mojo/application",
17 "//mojo/common", 19 "//mojo/common",
18 "//mojo/application", 20 "//mojo/public/c/system:for_shared_library",
19 "//mojo/public/cpp/bindings", 21 "//mojo/public/cpp/bindings",
20 "//mojo/public/cpp/utility", 22 "//mojo/public/cpp/utility",
21 "//mojo/public/c/system:for_shared_library",
22 "//skia", 23 "//skia",
23 "//sky/engine/wtf", 24 "//sky/engine/wtf",
24 "//third_party/angle:translator", 25 "//third_party/angle:translator",
25 "//third_party/iccjpeg", 26 "//third_party/iccjpeg",
26 "//third_party/libpng", 27 "//third_party/libpng",
27 "//third_party/ots", 28 "//third_party/ots",
28 "//third_party/qcms", 29 "//third_party/qcms",
29 "//third_party/zlib", 30 "//third_party/zlib",
30 "//url", 31 "//url",
31 "//v8", 32 "//v8",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "$sky_core_output_dir/CSSTokenizer.cpp", 104 "$sky_core_output_dir/CSSTokenizer.cpp",
104 105
105 # Generated from BisonCSSParser-in.cpp 106 # Generated from BisonCSSParser-in.cpp
106 "$sky_core_output_dir/BisonCSSParser.cpp", 107 "$sky_core_output_dir/BisonCSSParser.cpp",
107 108
108 # Generated from HTMLMetaElement-in.cpp 109 # Generated from HTMLMetaElement-in.cpp
109 "$sky_core_output_dir/HTMLMetaElement.cpp", 110 "$sky_core_output_dir/HTMLMetaElement.cpp",
110 111
111 # Additional .cpp files from the make_core_generated rules. 112 # Additional .cpp files from the make_core_generated rules.
112 "$sky_core_output_dir/CSSGrammar.cpp", 113 "$sky_core_output_dir/CSSGrammar.cpp",
113
114 # Generated from make_css_property_metadata.py
115 "$sky_core_output_dir/CSSPropertyMetadata.cpp",
116 ] 114 ]
117 115
118 configs += [ 116 configs += [
119 "..:inside_blink", 117 "..:inside_blink",
120 ] 118 ]
121 119
122 deps = [ 120 deps = [
123 ":make_core_generated", 121 ":make_core_generated",
124 ":prerequisites", 122 ":prerequisites",
125 "//gin", 123 "//gin",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 ":make_core_generated_fetch_initiator_type_names", 182 ":make_core_generated_fetch_initiator_type_names",
185 ":make_core_generated_html_element_factory", 183 ":make_core_generated_html_element_factory",
186 ":make_core_generated_html_tokenizer_names", 184 ":make_core_generated_html_tokenizer_names",
187 ":make_core_generated_media_type_names", 185 ":make_core_generated_media_type_names",
188 ] 186 ]
189 } 187 }
190 188
191 group("make_core_generated") { 189 group("make_core_generated") {
192 deps = [ 190 deps = [
193 ":core_names", 191 ":core_names",
192 ":make_core_generated_bison",
193 ":make_core_generated_css_property_metadata",
194 ":make_core_generated_css_value_keywords",
195 ":make_core_generated_event_factory",
196 ":make_core_generated_html_element_lookup_trie",
197 ":make_core_generated_html_element_type_helpers",
194 ":make_core_generated_html_entity_table", 198 ":make_core_generated_html_entity_table",
199 ":make_core_generated_make_parser",
200 ":make_core_generated_make_token_matcher",
201 ":make_core_generated_make_token_matcher_for_viewport",
195 ":make_core_generated_media_feature_names", 202 ":make_core_generated_media_feature_names",
196 ":make_core_generated_media_features", 203 ":make_core_generated_media_features",
197 ":make_core_generated_media_query_tokenizer_codepoints", 204 ":make_core_generated_media_query_tokenizer_codepoints",
205 ":make_core_generated_style_builder",
198 ":make_core_generated_style_property_shorthand", 206 ":make_core_generated_style_property_shorthand",
199 ":make_core_generated_style_builder",
200 ":make_core_generated_css_value_keywords",
201 ":make_core_generated_html_element_type_helpers",
202 ":make_core_generated_event_factory",
203 ":make_core_generated_make_token_matcher",
204 ":make_core_generated_make_parser",
205 ":make_core_generated_make_token_matcher_for_viewport",
206 ":make_core_generated_html_element_lookup_trie",
207 ":make_core_generated_bison",
208 ] 207 ]
209 } 208 }
210 209
211 css_properties("make_core_generated_css_property_names") { 210 css_properties("make_core_generated_css_property_names") {
212 script = "../build/scripts/make_css_property_names.py" 211 script = "../build/scripts/make_css_property_names.py"
213 outputs = [ 212 outputs = [
214 "$sky_core_output_dir/CSSPropertyNames.cpp", 213 "$sky_core_output_dir/CSSPropertyNames.cpp",
215 "$sky_core_output_dir/CSSPropertyNames.h", 214 "$sky_core_output_dir/CSSPropertyNames.h",
216 ] 215 ]
217 } 216 }
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 "$sky_core_output_dir/{{source_name_part}}.h", 514 "$sky_core_output_dir/{{source_name_part}}.h",
516 ] 515 ]
517 args = [ 516 args = [
518 "{{source}}", 517 "{{source}}",
519 rel_sky_core_gen_dir, 518 rel_sky_core_gen_dir,
520 bison_exe, 519 bison_exe,
521 ] 520 ]
522 521
523 deps = make_core_generated_deps 522 deps = make_core_generated_deps
524 } 523 }
OLDNEW
« no previous file with comments | « sky/engine/build/scripts/check_objc_rename.sh ('k') | sky/engine/core/core.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698