| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/bindings.gni") | 5 import("//sky/engine/bindings/bindings.gni") |
| 6 import("//sky/engine/core/core.gni") | 6 import("//sky/engine/core/core.gni") |
| 7 | 7 |
| 8 source_set("bindings") { | 8 source_set("bindings") { |
| 9 sources = [ | 9 sources = [ |
| 10 "builtin.cc", | 10 "builtin.cc", |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "//skia", | 392 "//skia", |
| 393 "//sky/engine/core:core_names", | 393 "//sky/engine/core:core_names", |
| 394 "//sky/engine/wtf", | 394 "//sky/engine/wtf", |
| 395 "//third_party/angle:translator", | 395 "//third_party/angle:translator", |
| 396 "//third_party/iccjpeg", | 396 "//third_party/iccjpeg", |
| 397 "//third_party/libpng", | 397 "//third_party/libpng", |
| 398 "//third_party/ots", | 398 "//third_party/ots", |
| 399 "//third_party/qcms", | 399 "//third_party/qcms", |
| 400 "//third_party/zlib", | 400 "//third_party/zlib", |
| 401 "//url", | 401 "//url", |
| 402 ":compile_idls", |
| 402 ":generate_dart_globals", | 403 ":generate_dart_globals", |
| 403 ] | 404 ] |
| 404 | 405 |
| 405 include_dirs = [ | 406 include_dirs = [ |
| 406 "..", | 407 "..", |
| 407 "$root_build_dir", | 408 "$root_build_dir", |
| 408 ] | 409 ] |
| 409 | 410 |
| 410 sources = get_target_outputs(":compile_idls") | 411 sources = get_target_outputs(":compile_idls") |
| 411 sources += get_target_outputs(":generate_dart_globals") | 412 sources += get_target_outputs(":generate_dart_globals") |
| 412 } | 413 } |
| OLD | NEW |