| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 ":libraries", | 65 ":libraries", |
| 66 ":prerequisites", | 66 ":prerequisites", |
| 67 "//sky/engine/platform", | 67 "//sky/engine/platform", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 sources = sky_core_files | 70 sources = sky_core_files |
| 71 | 71 |
| 72 forward_dependent_configs_from = [ | 72 forward_dependent_configs_from = [ |
| 73 ":libraries", | 73 ":libraries", |
| 74 ] | 74 ] |
| 75 |
| 76 # core and core_generated are really the same thing. |
| 77 allow_circular_includes_from = [ ":core_generated" ] |
| 75 } | 78 } |
| 76 | 79 |
| 77 source_set("testing") { | 80 source_set("testing") { |
| 78 deps = [ | 81 deps = [ |
| 79 ":core", | 82 ":core", |
| 80 ":core_generated", | 83 ":core_generated", |
| 81 ":prerequisites", | 84 ":prerequisites", |
| 82 "//sky/engine/platform", | 85 "//sky/engine/platform", |
| 83 "//sky/engine/wtf", | 86 "//sky/engine/wtf", |
| 84 ] | 87 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 120 |
| 118 configs += [ | 121 configs += [ |
| 119 "..:inside_blink", | 122 "..:inside_blink", |
| 120 ] | 123 ] |
| 121 | 124 |
| 122 deps = [ | 125 deps = [ |
| 123 ":make_core_generated", | 126 ":make_core_generated", |
| 124 ":prerequisites", | 127 ":prerequisites", |
| 125 "//gin", | 128 "//gin", |
| 126 "//skia", | 129 "//skia", |
| 130 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", |
| 131 "//sky/engine/platform", |
| 132 "//sky/engine/wtf", |
| 127 "//third_party/iccjpeg", | 133 "//third_party/iccjpeg", |
| 128 "//third_party/libpng", | 134 "//third_party/libpng", |
| 129 "//third_party/qcms", | 135 "//third_party/qcms", |
| 130 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", | |
| 131 "//sky/engine/wtf", | |
| 132 "//url", | 136 "//url", |
| 133 "//v8", | 137 "//v8", |
| 134 ] | 138 ] |
| 135 | 139 |
| 136 include_dirs = [ | 140 include_dirs = [ |
| 137 "$root_build_dir", | 141 "$root_build_dir", |
| 138 ] | 142 ] |
| 139 } | 143 } |
| 140 | 144 |
| 141 # core_bindings_generated ------------------------------------------------------ | 145 # core_bindings_generated ------------------------------------------------------ |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 "$sky_core_output_dir/{{source_name_part}}.h", | 484 "$sky_core_output_dir/{{source_name_part}}.h", |
| 481 ] | 485 ] |
| 482 args = [ | 486 args = [ |
| 483 "{{source}}", | 487 "{{source}}", |
| 484 rel_sky_core_gen_dir, | 488 rel_sky_core_gen_dir, |
| 485 bison_exe, | 489 bison_exe, |
| 486 ] | 490 ] |
| 487 | 491 |
| 488 deps = make_core_generated_deps | 492 deps = make_core_generated_deps |
| 489 } | 493 } |
| OLD | NEW |