| 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 ":copy_core_dart_files", | 371 ":copy_core_dart_files", |
| 372 ":compile_idls", | 372 ":compile_idls", |
| 373 ] | 373 ] |
| 374 } | 374 } |
| 375 | 375 |
| 376 source_set("generated_bindings") { | 376 source_set("generated_bindings") { |
| 377 deps = [ | 377 deps = [ |
| 378 "//base", | 378 "//base", |
| 379 "//dart/runtime:libdart", | 379 "//dart/runtime:libdart", |
| 380 "//dart/runtime/vm:libdart_platform", | 380 "//dart/runtime/vm:libdart_platform", |
| 381 "//gpu/command_buffer/client:gles2_c_lib", | |
| 382 "//mojo/application", | 381 "//mojo/application", |
| 383 "//mojo/common", | 382 "//mojo/common", |
| 384 "//mojo/public/c/system", | 383 "//mojo/public/c/system", |
| 385 "//mojo/public/cpp/bindings", | 384 "//mojo/public/cpp/bindings", |
| 386 "//mojo/public/cpp/system", | 385 "//mojo/public/cpp/system", |
| 387 "//mojo/public/cpp/utility", | 386 "//mojo/public/cpp/utility", |
| 388 "//mojo/public/interfaces/application", | 387 "//mojo/public/interfaces/application", |
| 389 "//mojo/services/keyboard/public/interfaces", | |
| 390 "//mojo/services/navigation/public/interfaces", | |
| 391 "//mojo/services/view_manager/public/cpp", | |
| 392 "//skia", | 388 "//skia", |
| 393 "//sky/engine/core:core_names", | 389 "//sky/engine/core:core_names", |
| 394 "//sky/engine/wtf", | 390 "//sky/engine/wtf", |
| 395 "//third_party/angle:translator", | 391 "//third_party/angle:translator", |
| 396 "//third_party/iccjpeg", | 392 "//third_party/iccjpeg", |
| 397 "//third_party/libpng", | 393 "//third_party/libpng", |
| 398 "//third_party/ots", | 394 "//third_party/ots", |
| 399 "//third_party/qcms", | 395 "//third_party/qcms", |
| 400 "//third_party/zlib", | 396 "//third_party/zlib", |
| 401 "//url", | 397 "//url", |
| 402 ":compile_idls", | 398 ":compile_idls", |
| 403 ":generate_dart_globals", | 399 ":generate_dart_globals", |
| 404 ] | 400 ] |
| 405 | 401 |
| 406 include_dirs = [ | 402 include_dirs = [ |
| 407 "..", | 403 "..", |
| 408 "$root_build_dir", | 404 "$root_build_dir", |
| 409 ] | 405 ] |
| 410 | 406 |
| 411 sources = get_target_outputs(":compile_idls") | 407 sources = get_target_outputs(":compile_idls") |
| 412 sources += get_target_outputs(":generate_dart_globals") | 408 sources += get_target_outputs(":generate_dart_globals") |
| 413 } | 409 } |
| OLD | NEW |