| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 deps = [ | 50 deps = [ |
| 51 "//dart/runtime/bin:gen_snapshot($host_toolchain)", | 51 "//dart/runtime/bin:gen_snapshot($host_toolchain)", |
| 52 ":generate_sky_core_dart", | 52 ":generate_sky_core_dart", |
| 53 ] | 53 ] |
| 54 inputs = [ | 54 inputs = [ |
| 55 "//dart/runtime/tools/create_snapshot_bin.py", | 55 "//dart/runtime/tools/create_snapshot_bin.py", |
| 56 "//sky/engine/bindings/builtin.dart", | 56 "//sky/engine/bindings/builtin.dart", |
| 57 "//mojo/public/dart/bindings.dart", | 57 "//mojo/public/dart/bindings.dart", |
| 58 "//mojo/public/dart/core.dart", | 58 "//mojo/public/dart/core.dart", |
| 59 "//mojo/public/dart/src/application.dart", | 59 "//mojo/public/dart/src/application.dart", |
| 60 "//mojo/public/dart/src/application_connection.dart", |
| 60 "//mojo/public/dart/src/buffer.dart", | 61 "//mojo/public/dart/src/buffer.dart", |
| 61 "//mojo/public/dart/src/codec.dart", | 62 "//mojo/public/dart/src/codec.dart", |
| 62 "//mojo/public/dart/src/data_pipe.dart", | 63 "//mojo/public/dart/src/data_pipe.dart", |
| 63 "//mojo/public/dart/src/drain_data.dart", | 64 "//mojo/public/dart/src/drain_data.dart", |
| 64 "//mojo/public/dart/src/event_stream.dart", | 65 "//mojo/public/dart/src/event_stream.dart", |
| 65 "//mojo/public/dart/src/handle.dart", | 66 "//mojo/public/dart/src/handle.dart", |
| 66 "//mojo/public/dart/src/handle_watcher.dart", | 67 "//mojo/public/dart/src/handle_watcher.dart", |
| 67 "//mojo/public/dart/src/message.dart", | 68 "//mojo/public/dart/src/message.dart", |
| 68 "//mojo/public/dart/src/message_pipe.dart", | 69 "//mojo/public/dart/src/message_pipe.dart", |
| 69 "//mojo/public/dart/src/proxy.dart", | 70 "//mojo/public/dart/src/proxy.dart", |
| 70 "//mojo/public/dart/src/service_provider.dart", | |
| 71 "//mojo/public/dart/src/struct.dart", | 71 "//mojo/public/dart/src/struct.dart", |
| 72 "//mojo/public/dart/src/stub.dart", | 72 "//mojo/public/dart/src/stub.dart", |
| 73 "//mojo/public/dart/src/timer_queue.dart", | 73 "//mojo/public/dart/src/timer_queue.dart", |
| 74 "//mojo/public/dart/src/types.dart", | 74 "//mojo/public/dart/src/types.dart", |
| 75 "snapshot.dart", | 75 "snapshot.dart", |
| 76 ] | 76 ] |
| 77 output = "$target_gen_dir/snapshot_gen.bin" | 77 output = "$target_gen_dir/snapshot_gen.bin" |
| 78 outputs = [ | 78 outputs = [ |
| 79 output, | 79 output, |
| 80 ] | 80 ] |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 ] | 389 ] |
| 390 | 390 |
| 391 include_dirs = [ | 391 include_dirs = [ |
| 392 "..", | 392 "..", |
| 393 "$root_build_dir", | 393 "$root_build_dir", |
| 394 ] | 394 ] |
| 395 | 395 |
| 396 sources = get_target_outputs(":compile_idls") | 396 sources = get_target_outputs(":compile_idls") |
| 397 sources += get_target_outputs(":generate_dart_globals") | 397 sources += get_target_outputs(":generate_dart_globals") |
| 398 } | 398 } |
| OLD | NEW |