| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 "//mojo/common", | 377 "//mojo/common", |
| 378 "//mojo/public/c/system", | 378 "//mojo/public/c/system", |
| 379 "//mojo/public/cpp/bindings", | 379 "//mojo/public/cpp/bindings", |
| 380 "//mojo/public/cpp/system", | 380 "//mojo/public/cpp/system", |
| 381 "//mojo/public/cpp/utility", | 381 "//mojo/public/cpp/utility", |
| 382 "//mojo/public/interfaces/application", | 382 "//mojo/public/interfaces/application", |
| 383 "//mojo/services/keyboard/public/interfaces", | 383 "//mojo/services/keyboard/public/interfaces", |
| 384 "//mojo/services/navigation/public/interfaces", | 384 "//mojo/services/navigation/public/interfaces", |
| 385 "//mojo/services/view_manager/public/cpp", | 385 "//mojo/services/view_manager/public/cpp", |
| 386 "//skia", | 386 "//skia", |
| 387 "//sky/engine/core:core_names", |
| 387 "//sky/engine/wtf", | 388 "//sky/engine/wtf", |
| 388 "//third_party/angle:translator", | 389 "//third_party/angle:translator", |
| 389 "//third_party/iccjpeg", | 390 "//third_party/iccjpeg", |
| 390 "//third_party/libpng", | 391 "//third_party/libpng", |
| 391 "//third_party/ots", | 392 "//third_party/ots", |
| 392 "//third_party/qcms", | 393 "//third_party/qcms", |
| 393 "//third_party/zlib", | 394 "//third_party/zlib", |
| 394 "//url", | 395 "//url", |
| 395 ":generate_dart_globals", | 396 ":generate_dart_globals", |
| 396 ] | 397 ] |
| 397 | 398 |
| 398 include_dirs = [ | 399 include_dirs = [ |
| 399 "..", | 400 "..", |
| 400 "$root_build_dir", | 401 "$root_build_dir", |
| 401 ] | 402 ] |
| 402 | 403 |
| 403 sources = get_target_outputs(":compile_idls") | 404 sources = get_target_outputs(":compile_idls") |
| 404 sources += get_target_outputs(":generate_dart_globals") | 405 sources += get_target_outputs(":generate_dart_globals") |
| 405 } | 406 } |
| OLD | NEW |