| OLD | NEW |
| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 process_in_files("make_core_generated_event_factory") { | 321 process_in_files("make_core_generated_event_factory") { |
| 322 script = "../build/scripts/make_event_factory.py" | 322 script = "../build/scripts/make_event_factory.py" |
| 323 | 323 |
| 324 in_files = [ | 324 in_files = [ |
| 325 "$sky_core_output_dir/EventInterfaces.in", | 325 "$sky_core_output_dir/EventInterfaces.in", |
| 326 "events/EventAliases.in", | 326 "events/EventAliases.in", |
| 327 ] | 327 ] |
| 328 other_inputs = make_event_factory_files | 328 other_inputs = make_event_factory_files |
| 329 outputs = [ | 329 outputs = [ |
| 330 "$sky_core_output_dir/Event.cpp", | |
| 331 "$sky_core_output_dir/EventHeaders.h", | 330 "$sky_core_output_dir/EventHeaders.h", |
| 332 "$sky_core_output_dir/EventInterfaces.h", | 331 "$sky_core_output_dir/EventInterfaces.h", |
| 333 ] | 332 ] |
| 334 deps = [ | 333 deps = [ |
| 335 ":core_names", | 334 ":core_names", |
| 336 ":libraries", | 335 ":libraries", |
| 337 ] | 336 ] |
| 338 } | 337 } |
| 339 | 338 |
| 340 process_in_files("make_core_generated_media_feature_names") { | 339 process_in_files("make_core_generated_media_feature_names") { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 "$sky_core_output_dir/{{source_name_part}}.h", | 457 "$sky_core_output_dir/{{source_name_part}}.h", |
| 459 ] | 458 ] |
| 460 args = [ | 459 args = [ |
| 461 "{{source}}", | 460 "{{source}}", |
| 462 rel_sky_core_gen_dir, | 461 rel_sky_core_gen_dir, |
| 463 bison_exe, | 462 bison_exe, |
| 464 ] | 463 ] |
| 465 | 464 |
| 466 deps = make_core_generated_deps | 465 deps = make_core_generated_deps |
| 467 } | 466 } |
| OLD | NEW |