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

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

Issue 1223793006: Delete sky/engine/core/fetch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
« 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/build/scripts/scripts.gni") 5 import("//sky/engine/build/scripts/scripts.gni")
6 import("//sky/engine/core/core.gni") 6 import("//sky/engine/core/core.gni")
7 import("//mojo/dart/embedder/embedder.gni") 7 import("//mojo/dart/embedder/embedder.gni")
8 8
9 visibility = [ "//sky/engine/*" ] 9 visibility = [ "//sky/engine/*" ]
10 10
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 # make_core_generated ---------------------------------------------------------- 229 # make_core_generated ----------------------------------------------------------
230 230
231 group("core_names") { 231 group("core_names") {
232 deps = [ 232 deps = [
233 ":make_core_generated_css_property_names", 233 ":make_core_generated_css_property_names",
234 ":make_core_generated_event_names", 234 ":make_core_generated_event_names",
235 ":make_core_generated_event_target_factory", 235 ":make_core_generated_event_target_factory",
236 ":make_core_generated_event_target_names", 236 ":make_core_generated_event_target_names",
237 ":make_core_generated_event_type_names", 237 ":make_core_generated_event_type_names",
238 ":make_core_generated_fetch_initiator_type_names",
239 ":make_core_generated_html_element_factory", 238 ":make_core_generated_html_element_factory",
240 ":make_core_generated_media_type_names", 239 ":make_core_generated_media_type_names",
241 ] 240 ]
242 } 241 }
243 242
244 group("make_core_generated") { 243 group("make_core_generated") {
245 deps = [ 244 deps = [
246 ":core_names", 245 ":core_names",
247 ":make_core_generated_bison", 246 ":make_core_generated_bison",
248 ":make_core_generated_css_property_metadata", 247 ":make_core_generated_css_property_metadata",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 } 435 }
437 436
438 make_names("make_core_generated_event_target_names") { 437 make_names("make_core_generated_event_target_names") {
439 in_files = [ "events/EventTargetFactory.in" ] 438 in_files = [ "events/EventTargetFactory.in" ]
440 outputs = [ 439 outputs = [
441 "$sky_core_output_dir/EventTargetNames.cpp", 440 "$sky_core_output_dir/EventTargetNames.cpp",
442 "$sky_core_output_dir/EventTargetNames.h", 441 "$sky_core_output_dir/EventTargetNames.h",
443 ] 442 ]
444 } 443 }
445 444
446 make_names("make_core_generated_fetch_initiator_type_names") {
447 in_files = [ "fetch/FetchInitiatorTypeNames.in" ]
448 outputs = [
449 "$sky_core_output_dir/FetchInitiatorTypeNames.cpp",
450 "$sky_core_output_dir/FetchInitiatorTypeNames.h",
451 ]
452 }
453
454 make_names("make_core_generated_event_type_names") { 445 make_names("make_core_generated_event_type_names") {
455 in_files = [ "events/EventTypeNames.in" ] 446 in_files = [ "events/EventTypeNames.in" ]
456 outputs = [ 447 outputs = [
457 "$sky_core_output_dir/EventTypeNames.cpp", 448 "$sky_core_output_dir/EventTypeNames.cpp",
458 "$sky_core_output_dir/EventTypeNames.h", 449 "$sky_core_output_dir/EventTypeNames.h",
459 ] 450 ]
460 } 451 }
461 452
462 # make_token_matcher ----------------------------------------------------------- 453 # make_token_matcher -----------------------------------------------------------
463 454
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 "$sky_core_output_dir/{{source_name_part}}.h", 506 "$sky_core_output_dir/{{source_name_part}}.h",
516 ] 507 ]
517 args = [ 508 args = [
518 "{{source}}", 509 "{{source}}",
519 rel_sky_core_gen_dir, 510 rel_sky_core_gen_dir,
520 bison_exe, 511 bison_exe,
521 ] 512 ]
522 513
523 deps = make_core_generated_deps 514 deps = make_core_generated_deps
524 } 515 }
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