| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 ] | 361 ] |
| 362 } | 362 } |
| 363 | 363 |
| 364 source_set("generated_bindings") { | 364 source_set("generated_bindings") { |
| 365 deps = [ | 365 deps = [ |
| 366 "//base", | 366 "//base", |
| 367 "//dart/runtime/bin:libdart_withcore", | 367 "//dart/runtime/bin:libdart_withcore", |
| 368 "//gpu/command_buffer/client:gles2_c_lib", | 368 "//gpu/command_buffer/client:gles2_c_lib", |
| 369 "//mojo/application", | 369 "//mojo/application", |
| 370 "//mojo/common", | 370 "//mojo/common", |
| 371 "//mojo/edk/js", | |
| 372 "//mojo/public/c/system", | 371 "//mojo/public/c/system", |
| 373 "//mojo/public/cpp/bindings", | 372 "//mojo/public/cpp/bindings", |
| 374 "//mojo/public/cpp/system", | 373 "//mojo/public/cpp/system", |
| 375 "//mojo/public/cpp/utility", | 374 "//mojo/public/cpp/utility", |
| 376 "//mojo/public/interfaces/application", | 375 "//mojo/public/interfaces/application", |
| 377 "//mojo/services/keyboard/public/interfaces", | 376 "//mojo/services/keyboard/public/interfaces", |
| 378 "//mojo/services/navigation/public/interfaces", | 377 "//mojo/services/navigation/public/interfaces", |
| 379 "//mojo/services/view_manager/public/cpp", | 378 "//mojo/services/view_manager/public/cpp", |
| 380 "//skia", | 379 "//skia", |
| 381 "//sky/engine/wtf", | 380 "//sky/engine/wtf", |
| 382 "//third_party/angle:translator", | 381 "//third_party/angle:translator", |
| 383 "//third_party/iccjpeg", | 382 "//third_party/iccjpeg", |
| 384 "//third_party/libpng", | 383 "//third_party/libpng", |
| 385 "//third_party/ots", | 384 "//third_party/ots", |
| 386 "//third_party/qcms", | 385 "//third_party/qcms", |
| 387 "//third_party/zlib", | 386 "//third_party/zlib", |
| 388 "//url", | 387 "//url", |
| 389 ":generate_dart_globals", | 388 ":generate_dart_globals", |
| 390 ] | 389 ] |
| 391 | 390 |
| 392 include_dirs = [ | 391 include_dirs = [ |
| 393 "..", | 392 "..", |
| 394 "$root_build_dir", | 393 "$root_build_dir", |
| 395 ] | 394 ] |
| 396 | 395 |
| 397 sources = get_target_outputs(":compile_idls") | 396 sources = get_target_outputs(":compile_idls") |
| 398 sources += get_target_outputs(":generate_dart_globals") | 397 sources += get_target_outputs(":generate_dart_globals") |
| 399 } | 398 } |
| OLD | NEW |