| 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/build/scripts/scripts.gni") | 5 import("//sky/engine/build/scripts/scripts.gni") |
| 6 import("//sky/engine/core/core.gni") | 6 import("//sky/engine/core/core.gni") |
| 7 | 7 |
| 8 visibility = [ "//sky/engine/*" ] | 8 visibility = [ "//sky/engine/*" ] |
| 9 | 9 |
| 10 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) | 10 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) |
| 11 | 11 |
| 12 source_set("libraries") { | 12 source_set("libraries") { |
| 13 public_deps = [ | 13 public_deps = [ |
| 14 "//base", | 14 "//base", |
| 15 "//gpu/command_buffer/client:gles2_c_lib", | 15 "//gpu/command_buffer/client:gles2_c_lib", |
| 16 "//mojo/application", | 16 "//mojo/application", |
| 17 "//mojo/common", | 17 "//mojo/common", |
| 18 "//mojo/edk/js", | |
| 19 "//mojo/public/c/system", | 18 "//mojo/public/c/system", |
| 20 "//mojo/public/cpp/bindings", | 19 "//mojo/public/cpp/bindings", |
| 21 "//mojo/public/cpp/system", | 20 "//mojo/public/cpp/system", |
| 22 "//mojo/public/cpp/utility", | 21 "//mojo/public/cpp/utility", |
| 23 "//mojo/public/interfaces/application", | 22 "//mojo/public/interfaces/application", |
| 24 "//mojo/services/keyboard/public/interfaces", | 23 "//mojo/services/keyboard/public/interfaces", |
| 25 "//mojo/services/navigation/public/interfaces", | 24 "//mojo/services/navigation/public/interfaces", |
| 26 "//mojo/services/view_manager/public/cpp", | 25 "//mojo/services/view_manager/public/cpp", |
| 27 "//skia", | 26 "//skia", |
| 28 "//sky/engine/tonic:tonic", | 27 "//sky/engine/tonic:tonic", |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "$sky_core_output_dir/{{source_name_part}}.h", | 487 "$sky_core_output_dir/{{source_name_part}}.h", |
| 489 ] | 488 ] |
| 490 args = [ | 489 args = [ |
| 491 "{{source}}", | 490 "{{source}}", |
| 492 rel_sky_core_gen_dir, | 491 rel_sky_core_gen_dir, |
| 493 bison_exe, | 492 bison_exe, |
| 494 ] | 493 ] |
| 495 | 494 |
| 496 deps = make_core_generated_deps | 495 deps = make_core_generated_deps |
| 497 } | 496 } |
| OLD | NEW |