| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "..:inside_blink", | 108 "..:inside_blink", |
| 109 ] | 109 ] |
| 110 | 110 |
| 111 deps = [ | 111 deps = [ |
| 112 ":make_core_generated", | 112 ":make_core_generated", |
| 113 ":prerequisites", | 113 ":prerequisites", |
| 114 "//gin", | 114 "//gin", |
| 115 "//skia", | 115 "//skia", |
| 116 "//third_party/iccjpeg", | 116 "//third_party/iccjpeg", |
| 117 "//third_party/libpng", | 117 "//third_party/libpng", |
| 118 "//third_party/libxml", | |
| 119 "//third_party/qcms", | 118 "//third_party/qcms", |
| 120 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", | 119 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", |
| 121 "//sky/engine/wtf", | 120 "//sky/engine/wtf", |
| 122 "//url", | 121 "//url", |
| 123 "//v8", | 122 "//v8", |
| 124 ] | 123 ] |
| 125 | 124 |
| 126 include_dirs = [ | 125 include_dirs = [ |
| 127 "$root_gen_dir/sky", | 126 "$root_gen_dir/sky", |
| 128 ] | 127 ] |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "$sky_core_output_dir/{{source_name_part}}.h", | 469 "$sky_core_output_dir/{{source_name_part}}.h", |
| 471 ] | 470 ] |
| 472 args = [ | 471 args = [ |
| 473 "{{source}}", | 472 "{{source}}", |
| 474 rel_sky_core_gen_dir, | 473 rel_sky_core_gen_dir, |
| 475 bison_exe, | 474 bison_exe, |
| 476 ] | 475 ] |
| 477 | 476 |
| 478 deps = make_core_generated_deps | 477 deps = make_core_generated_deps |
| 479 } | 478 } |
| OLD | NEW |