| 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 25 matching lines...) Expand all Loading... |
| 36 "//v8", | 36 "//v8", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("prerequisites") { | 40 source_set("prerequisites") { |
| 41 deps = [ | 41 deps = [ |
| 42 ":libraries", | 42 ":libraries", |
| 43 ":make_core_generated", | 43 ":make_core_generated", |
| 44 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", | 44 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", |
| 45 "//sky/engine/platform", | 45 "//sky/engine/platform", |
| 46 "inspector:protocol_sources", | |
| 47 ] | 46 ] |
| 48 | 47 |
| 49 forward_dependent_configs_from = [ | 48 forward_dependent_configs_from = [ |
| 50 ":libraries", | 49 ":libraries", |
| 51 ] | 50 ] |
| 52 | 51 |
| 53 direct_dependent_configs = [ | 52 direct_dependent_configs = [ |
| 54 "//sky/engine:config", | 53 "//sky/engine:config", |
| 55 "//sky/engine:inside_blink", | 54 "//sky/engine:inside_blink", |
| 56 "//build/config/compiler:wexit_time_destructors" | 55 "//build/config/compiler:wexit_time_destructors" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 103 |
| 105 sources += [ | 104 sources += [ |
| 106 # Generated from CSSTokenizer-in.cpp | 105 # Generated from CSSTokenizer-in.cpp |
| 107 "$sky_core_output_dir/CSSTokenizer.cpp", | 106 "$sky_core_output_dir/CSSTokenizer.cpp", |
| 108 | 107 |
| 109 # Generated from BisonCSSParser-in.cpp | 108 # Generated from BisonCSSParser-in.cpp |
| 110 "$sky_core_output_dir/BisonCSSParser.cpp", | 109 "$sky_core_output_dir/BisonCSSParser.cpp", |
| 111 | 110 |
| 112 # Additional .cpp files from the make_core_generated rules. | 111 # Additional .cpp files from the make_core_generated rules. |
| 113 "$sky_core_output_dir/CSSGrammar.cpp", | 112 "$sky_core_output_dir/CSSGrammar.cpp", |
| 114 | |
| 115 # Additional .cpp files from the inspector_protocol_sources list. | |
| 116 "$sky_core_output_dir/InspectorFrontend.cpp", | |
| 117 "$sky_core_output_dir/InspectorBackendDispatcher.cpp", | |
| 118 "$sky_core_output_dir/InspectorTypeBuilder.cpp", | |
| 119 ] | 113 ] |
| 120 | 114 |
| 121 configs += [ | 115 configs += [ |
| 122 "..:inside_blink", | 116 "..:inside_blink", |
| 123 ] | 117 ] |
| 124 | 118 |
| 125 deps = [ | 119 deps = [ |
| 126 ":make_core_generated", | 120 ":make_core_generated", |
| 127 ":prerequisites", | 121 ":prerequisites", |
| 128 "//gin", | 122 "//gin", |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 "$sky_core_output_dir/{{source_name_part}}.h", | 478 "$sky_core_output_dir/{{source_name_part}}.h", |
| 485 ] | 479 ] |
| 486 args = [ | 480 args = [ |
| 487 "{{source}}", | 481 "{{source}}", |
| 488 rel_sky_core_gen_dir, | 482 rel_sky_core_gen_dir, |
| 489 bison_exe, | 483 bison_exe, |
| 490 ] | 484 ] |
| 491 | 485 |
| 492 deps = make_core_generated_deps | 486 deps = make_core_generated_deps |
| 493 } | 487 } |
| OLD | NEW |