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

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

Issue 682903002: Remove HTMLTokenizerNames (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 | « no previous file | sky/engine/core/Init.cpp » ('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
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 167
168 group("core_names") { 168 group("core_names") {
169 deps = [ 169 deps = [
170 ":make_core_generated_css_property_names", 170 ":make_core_generated_css_property_names",
171 ":make_core_generated_event_names", 171 ":make_core_generated_event_names",
172 ":make_core_generated_event_target_factory", 172 ":make_core_generated_event_target_factory",
173 ":make_core_generated_event_target_names", 173 ":make_core_generated_event_target_names",
174 ":make_core_generated_event_type_names", 174 ":make_core_generated_event_type_names",
175 ":make_core_generated_fetch_initiator_type_names", 175 ":make_core_generated_fetch_initiator_type_names",
176 ":make_core_generated_html_element_factory", 176 ":make_core_generated_html_element_factory",
177 ":make_core_generated_html_tokenizer_names",
178 ":make_core_generated_media_type_names", 177 ":make_core_generated_media_type_names",
179 ] 178 ]
180 } 179 }
181 180
182 group("make_core_generated") { 181 group("make_core_generated") {
183 deps = [ 182 deps = [
184 ":core_names", 183 ":core_names",
185 ":make_core_generated_bison", 184 ":make_core_generated_bison",
186 ":make_core_generated_css_property_metadata", 185 ":make_core_generated_css_property_metadata",
187 ":make_core_generated_css_value_keywords", 186 ":make_core_generated_css_value_keywords",
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 make_names("make_core_generated_event_type_names") { 409 make_names("make_core_generated_event_type_names") {
411 in_files = [ 410 in_files = [
412 "events/EventTypeNames.in", 411 "events/EventTypeNames.in",
413 ] 412 ]
414 outputs = [ 413 outputs = [
415 "$sky_core_output_dir/EventTypeNames.cpp", 414 "$sky_core_output_dir/EventTypeNames.cpp",
416 "$sky_core_output_dir/EventTypeNames.h", 415 "$sky_core_output_dir/EventTypeNames.h",
417 ] 416 ]
418 } 417 }
419 418
420 make_names("make_core_generated_html_tokenizer_names") {
421 in_files = [
422 "html/parser/HTMLTokenizerNames.in",
423 ]
424 outputs = [
425 "$sky_core_output_dir/HTMLTokenizerNames.cpp",
426 "$sky_core_output_dir/HTMLTokenizerNames.h",
427 ]
428 }
429
430 # make_token_matcher ----------------------------------------------------------- 419 # make_token_matcher -----------------------------------------------------------
431 420
432 make_token_matcher("make_core_generated_make_token_matcher") { 421 make_token_matcher("make_core_generated_make_token_matcher") {
433 input_file = "css/parser/CSSTokenizer-in.cpp" 422 input_file = "css/parser/CSSTokenizer-in.cpp"
434 output_file = "$sky_core_output_dir/CSSTokenizer.cpp" 423 output_file = "$sky_core_output_dir/CSSTokenizer.cpp"
435 } 424 }
436 425
437 make_token_matcher("make_core_generated_make_parser") { 426 make_token_matcher("make_core_generated_make_parser") {
438 input_file = "css/parser/BisonCSSParser-in.cpp" 427 input_file = "css/parser/BisonCSSParser-in.cpp"
439 output_file = "$sky_core_output_dir/BisonCSSParser.cpp" 428 output_file = "$sky_core_output_dir/BisonCSSParser.cpp"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 "$sky_core_output_dir/{{source_name_part}}.h", 478 "$sky_core_output_dir/{{source_name_part}}.h",
490 ] 479 ]
491 args = [ 480 args = [
492 "{{source}}", 481 "{{source}}",
493 rel_sky_core_gen_dir, 482 rel_sky_core_gen_dir,
494 bison_exe, 483 bison_exe,
495 ] 484 ]
496 485
497 deps = make_core_generated_deps 486 deps = make_core_generated_deps
498 } 487 }
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/Init.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698