| 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 12 matching lines...) Expand all Loading... |
| 23 "exception_state.cc", | 23 "exception_state.cc", |
| 24 "exception_state.h", | 24 "exception_state.h", |
| 25 "exception_state_placeholder.cc", | 25 "exception_state_placeholder.cc", |
| 26 "exception_state_placeholder.h", | 26 "exception_state_placeholder.h", |
| 27 "mojo_natives.cc", | 27 "mojo_natives.cc", |
| 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 |
| 34 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] |
| 35 |
| 33 deps = [ | 36 deps = [ |
| 34 "//base", | 37 "//base", |
| 35 "//dart/runtime/bin:libdart_withcore", | 38 "//dart/runtime/bin:libdart_withcore", |
| 36 "//mojo/public/c/system", | 39 "//mojo/public/c/system", |
| 37 "//mojo/public/cpp/system", | 40 "//mojo/public/cpp/system", |
| 38 "//sky/engine/platform:platform", | 41 "//sky/engine/platform:platform", |
| 39 "//sky/engine/tonic", | 42 "//sky/engine/tonic", |
| 40 "//sky/engine/wtf", | 43 "//sky/engine/wtf", |
| 44 "//dart/runtime/bin:embedded_dart_io", |
| 41 ":generated_bindings", | 45 ":generated_bindings", |
| 42 ":snapshot_cc", | 46 ":snapshot_cc", |
| 43 ] | 47 ] |
| 44 include_dirs = [ | 48 include_dirs = [ |
| 45 "..", | 49 "..", |
| 46 "$root_build_dir", | 50 "$root_build_dir", |
| 51 rebase_path("//dart/runtime"), |
| 47 ] | 52 ] |
| 48 } | 53 } |
| 49 | 54 |
| 50 action("generate_snapshot_bin") { | 55 action("generate_snapshot_bin") { |
| 51 deps = [ | 56 deps = [ |
| 52 "//dart/runtime/bin:gen_snapshot($host_toolchain)", | 57 "//dart/runtime/bin:gen_snapshot($host_toolchain)", |
| 53 ":generate_dart_sky", | 58 ":generate_dart_sky", |
| 54 ] | 59 ] |
| 55 inputs = [ | 60 inputs = [ |
| 56 "//dart/runtime/tools/create_snapshot_bin.py", | 61 "//dart/runtime/tools/create_snapshot_bin.py", |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 ] | 386 ] |
| 382 | 387 |
| 383 include_dirs = [ | 388 include_dirs = [ |
| 384 "..", | 389 "..", |
| 385 "$root_build_dir", | 390 "$root_build_dir", |
| 386 ] | 391 ] |
| 387 | 392 |
| 388 sources = get_target_outputs(":compile_idls") | 393 sources = get_target_outputs(":compile_idls") |
| 389 sources += get_target_outputs(":generate_dart_globals") | 394 sources += get_target_outputs(":generate_dart_globals") |
| 390 } | 395 } |
| OLD | NEW |