| 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 17 matching lines...) Expand all Loading... |
| 28 "mojo_natives.h", | 28 "mojo_natives.h", |
| 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:libdart_withcore", | 39 "//dart/runtime/bin:libdart_withcore", |
| 39 "//mojo/public/c/system", | 40 "//mojo/public/c/system", |
| 40 "//mojo/public/cpp/system", | 41 "//mojo/public/cpp/system", |
| 42 "//sky/engine/core:prerequisites", |
| 41 "//sky/engine/platform:platform", | 43 "//sky/engine/platform:platform", |
| 42 "//sky/engine/tonic", | 44 "//sky/engine/tonic", |
| 43 "//sky/engine/wtf", | 45 "//sky/engine/wtf", |
| 44 "//dart/runtime/bin:embedded_dart_io", | |
| 45 ":generated_bindings", | 46 ":generated_bindings", |
| 46 ":snapshot_cc", | 47 ":snapshot_cc", |
| 47 ] | 48 ] |
| 48 include_dirs = [ | 49 include_dirs = [ |
| 49 "..", | 50 "..", |
| 50 "$root_build_dir", | 51 "$root_build_dir", |
| 51 rebase_path("//dart/runtime"), | 52 rebase_path("//dart/runtime"), |
| 52 ] | 53 ] |
| 53 } | 54 } |
| 54 | 55 |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 ] | 387 ] |
| 387 | 388 |
| 388 include_dirs = [ | 389 include_dirs = [ |
| 389 "..", | 390 "..", |
| 390 "$root_build_dir", | 391 "$root_build_dir", |
| 391 ] | 392 ] |
| 392 | 393 |
| 393 sources = get_target_outputs(":compile_idls") | 394 sources = get_target_outputs(":compile_idls") |
| 394 sources += get_target_outputs(":generate_dart_globals") | 395 sources += get_target_outputs(":generate_dart_globals") |
| 395 } | 396 } |
| OLD | NEW |