| 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 import("//mojo/dart/embedder/embedder.gni") | 7 import("//mojo/dart/embedder/embedder.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 "//gpu/command_buffer/client:gles2_c_lib", | |
| 17 "//mojo/application", | 16 "//mojo/application", |
| 18 "//mojo/common", | 17 "//mojo/common", |
| 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", | |
| 25 "//mojo/services/navigation/public/interfaces", | |
| 26 "//mojo/services/network/public/interfaces", | |
| 27 "//mojo/services/view_manager/public/cpp", | |
| 28 "//skia", | 23 "//skia", |
| 29 "//sky/engine/tonic:tonic", | 24 "//sky/engine/tonic:tonic", |
| 30 "//sky/engine/wtf", | 25 "//sky/engine/wtf", |
| 31 "//third_party/angle:translator", | 26 "//third_party/angle:translator", |
| 32 "//third_party/iccjpeg", | 27 "//third_party/iccjpeg", |
| 33 "//third_party/libpng", | 28 "//third_party/libpng", |
| 34 "//third_party/ots", | 29 "//third_party/ots", |
| 35 "//third_party/qcms", | 30 "//third_party/qcms", |
| 36 "//third_party/zlib", | 31 "//third_party/zlib", |
| 37 "//url", | 32 "//url", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 "$sky_core_output_dir/{{source_name_part}}.h", | 501 "$sky_core_output_dir/{{source_name_part}}.h", |
| 507 ] | 502 ] |
| 508 args = [ | 503 args = [ |
| 509 "{{source}}", | 504 "{{source}}", |
| 510 rel_sky_core_gen_dir, | 505 rel_sky_core_gen_dir, |
| 511 bison_exe, | 506 bison_exe, |
| 512 ] | 507 ] |
| 513 | 508 |
| 514 deps = make_core_generated_deps | 509 deps = make_core_generated_deps |
| 515 } | 510 } |
| OLD | NEW |