| 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 24 matching lines...) Expand all Loading... |
| 35 "//v8", | 35 "//v8", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 | 38 |
| 39 source_set("prerequisites") { | 39 source_set("prerequisites") { |
| 40 deps = [ | 40 deps = [ |
| 41 ":libraries", | 41 ":libraries", |
| 42 ":make_core_generated", | 42 ":make_core_generated", |
| 43 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", | 43 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", |
| 44 "//sky/engine/platform", | 44 "//sky/engine/platform", |
| 45 "inspector:protocol_sources", |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 forward_dependent_configs_from = [ | 48 forward_dependent_configs_from = [ |
| 48 ":libraries", | 49 ":libraries", |
| 49 ] | 50 ] |
| 50 | 51 |
| 51 direct_dependent_configs = [ | 52 direct_dependent_configs = [ |
| 52 "//sky/engine:config", | 53 "//sky/engine:config", |
| 53 "//sky/engine:inside_blink", | 54 "//sky/engine:inside_blink", |
| 54 "//build/config/compiler:wexit_time_destructors" | 55 "//build/config/compiler:wexit_time_destructors" |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "$sky_core_output_dir/{{source_name_part}}.h", | 471 "$sky_core_output_dir/{{source_name_part}}.h", |
| 471 ] | 472 ] |
| 472 args = [ | 473 args = [ |
| 473 "{{source}}", | 474 "{{source}}", |
| 474 rel_sky_core_gen_dir, | 475 rel_sky_core_gen_dir, |
| 475 bison_exe, | 476 bison_exe, |
| 476 ] | 477 ] |
| 477 | 478 |
| 478 deps = make_core_generated_deps | 479 deps = make_core_generated_deps |
| 479 } | 480 } |
| OLD | NEW |