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 18 matching lines...) Expand all Loading... |
29 "nullable.h", | 29 "nullable.h", |
30 "scheduled_action.cc", | 30 "scheduled_action.cc", |
31 "scheduled_action.h", | 31 "scheduled_action.h", |
32 ] | 32 ] |
33 | 33 |
34 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] | 34 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] |
35 | 35 |
36 deps = [ | 36 deps = [ |
37 "//base", | 37 "//base", |
38 "//dart/runtime/bin:embedded_dart_io", | 38 "//dart/runtime/bin:embedded_dart_io", |
39 "//dart/runtime/bin:libdart_withcore", | 39 "//dart/runtime:libdart", |
40 "//mojo/public/c/system", | 40 "//mojo/public/c/system", |
41 "//mojo/public/cpp/system", | 41 "//mojo/public/cpp/system", |
42 "//sky/engine/core:prerequisites", | 42 "//sky/engine/core:prerequisites", |
43 "//sky/engine/platform:platform", | 43 "//sky/engine/platform:platform", |
44 "//sky/engine/tonic", | 44 "//sky/engine/tonic", |
45 "//sky/engine/wtf", | 45 "//sky/engine/wtf", |
46 ":generated_bindings", | 46 ":generated_bindings", |
47 ":snapshot_cc", | 47 ":snapshot_cc", |
48 ] | 48 ] |
49 include_dirs = [ | 49 include_dirs = [ |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 | 363 |
364 deps = [ | 364 deps = [ |
365 ":copy_core_dart_files", | 365 ":copy_core_dart_files", |
366 ":compile_idls", | 366 ":compile_idls", |
367 ] | 367 ] |
368 } | 368 } |
369 | 369 |
370 source_set("generated_bindings") { | 370 source_set("generated_bindings") { |
371 deps = [ | 371 deps = [ |
372 "//base", | 372 "//base", |
373 "//dart/runtime/bin:libdart_withcore", | 373 "//dart/runtime:libdart", |
| 374 "//dart/runtime/vm:libdart_platform", |
374 "//gpu/command_buffer/client:gles2_c_lib", | 375 "//gpu/command_buffer/client:gles2_c_lib", |
375 "//mojo/application", | 376 "//mojo/application", |
376 "//mojo/common", | 377 "//mojo/common", |
377 "//mojo/public/c/system", | 378 "//mojo/public/c/system", |
378 "//mojo/public/cpp/bindings", | 379 "//mojo/public/cpp/bindings", |
379 "//mojo/public/cpp/system", | 380 "//mojo/public/cpp/system", |
380 "//mojo/public/cpp/utility", | 381 "//mojo/public/cpp/utility", |
381 "//mojo/public/interfaces/application", | 382 "//mojo/public/interfaces/application", |
382 "//mojo/services/keyboard/public/interfaces", | 383 "//mojo/services/keyboard/public/interfaces", |
383 "//mojo/services/navigation/public/interfaces", | 384 "//mojo/services/navigation/public/interfaces", |
(...skipping 11 matching lines...) Expand all Loading... |
395 ] | 396 ] |
396 | 397 |
397 include_dirs = [ | 398 include_dirs = [ |
398 "..", | 399 "..", |
399 "$root_build_dir", | 400 "$root_build_dir", |
400 ] | 401 ] |
401 | 402 |
402 sources = get_target_outputs(":compile_idls") | 403 sources = get_target_outputs(":compile_idls") |
403 sources += get_target_outputs(":generate_dart_globals") | 404 sources += get_target_outputs(":generate_dart_globals") |
404 } | 405 } |
OLD | NEW |