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 |
11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) | 11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) |
12 | 12 |
13 source_set("libraries") { | 13 source_set("libraries") { |
14 deps = [ | 14 public_deps = [ |
eseidel
2014/10/24 21:32:03
Libraries exists just to have one place to list al
| |
15 "//base:base", | 15 "//base:base", |
16 "//gin", | 16 "//gin", |
17 "//gpu/command_buffer/client:gles2_c_lib", | 17 "//gpu/command_buffer/client:gles2_c_lib", |
18 "//mojo/application", | 18 "//mojo/application", |
19 "//mojo/common", | 19 "//mojo/common", |
20 "//mojo/public/c/system:for_shared_library", | 20 "//mojo/public/c/system:for_shared_library", |
21 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
22 "//mojo/public/cpp/utility", | 22 "//mojo/public/cpp/utility", |
23 "//mojo/public/cpp/system:system", | |
23 "//skia", | 24 "//skia", |
24 "//sky/engine/wtf", | 25 "//sky/engine/wtf", |
25 "//third_party/angle:translator", | 26 "//third_party/angle:translator", |
26 "//third_party/iccjpeg", | 27 "//third_party/iccjpeg", |
27 "//third_party/libpng", | 28 "//third_party/libpng", |
28 "//third_party/ots", | 29 "//third_party/ots", |
29 "//third_party/qcms", | 30 "//third_party/qcms", |
30 "//third_party/zlib", | 31 "//third_party/zlib", |
31 "//url", | 32 "//url", |
32 "//v8", | 33 "//v8", |
33 ] | 34 ] |
34 | |
35 forward_dependent_configs_from = deps | |
36 } | 35 } |
37 | 36 |
38 source_set("prerequisites") { | 37 source_set("prerequisites") { |
39 deps = [ | 38 deps = [ |
40 ":libraries", | 39 ":libraries", |
41 ":make_core_generated", | 40 ":make_core_generated", |
42 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", | 41 "//sky/engine/bindings/core/v8:bindings_core_v8_generated", |
43 "//sky/engine/platform", | 42 "//sky/engine/platform", |
44 ] | 43 ] |
45 | 44 |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
514 "$sky_core_output_dir/{{source_name_part}}.h", | 513 "$sky_core_output_dir/{{source_name_part}}.h", |
515 ] | 514 ] |
516 args = [ | 515 args = [ |
517 "{{source}}", | 516 "{{source}}", |
518 rel_sky_core_gen_dir, | 517 rel_sky_core_gen_dir, |
519 bison_exe, | 518 bison_exe, |
520 ] | 519 ] |
521 | 520 |
522 deps = make_core_generated_deps | 521 deps = make_core_generated_deps |
523 } | 522 } |
OLD | NEW |