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 public_deps = [ | 14 public_deps = [ |
15 "//base", | 15 "//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", |
21 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
22 "//mojo/public/cpp/system", | 22 "//mojo/public/cpp/system", |
23 "//mojo/public/cpp/utility", | 23 "//mojo/public/cpp/utility", |
24 "//mojo/public/interfaces/application", | 24 "//mojo/public/interfaces/application", |
25 "//mojo/services/public/cpp/view_manager", | 25 "//mojo/services/public/cpp/view_manager", |
26 "//mojo/services/public/interfaces/navigation", | 26 "//mojo/services/public/interfaces/navigation", |
27 "//skia", | 27 "//skia", |
28 "//sky/engine/wtf", | 28 "//sky/engine/wtf", |
29 "//third_party/angle:translator", | 29 "//third_party/angle:translator", |
30 "//third_party/iccjpeg", | 30 "//third_party/iccjpeg", |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 "$sky_core_output_dir/{{source_name_part}}.h", | 456 "$sky_core_output_dir/{{source_name_part}}.h", |
457 ] | 457 ] |
458 args = [ | 458 args = [ |
459 "{{source}}", | 459 "{{source}}", |
460 rel_sky_core_gen_dir, | 460 rel_sky_core_gen_dir, |
461 bison_exe, | 461 bison_exe, |
462 ] | 462 ] |
463 | 463 |
464 deps = make_core_generated_deps | 464 deps = make_core_generated_deps |
465 } | 465 } |
OLD | NEW |