| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 action("generate_snapshot_bin") { | 5 action("generate_snapshot_bin") { |
| 6 deps = [ | 6 deps = [ |
| 7 "//dart/runtime/bin:gen_snapshot", | 7 "//dart/runtime/bin:gen_snapshot", |
| 8 "//mojo/public/interfaces/application", |
| 8 ] | 9 ] |
| 9 inputs = [ | 10 inputs = [ |
| 10 "snapshot.dart", | 11 "snapshot.dart", |
| 11 "//dart/runtime/tools/create_snapshot_bin.py", | 12 "//dart/runtime/tools/create_snapshot_bin.py", |
| 12 "//mojo/dart/embedder/builtin.dart", | 13 "//mojo/dart/embedder/builtin.dart", |
| 13 "//mojo/public/dart/bindings.dart", | 14 "//mojo/public/dart/bindings.dart", |
| 14 "//mojo/public/dart/core.dart", | 15 "//mojo/public/dart/core.dart", |
| 16 "//mojo/public/dart/src/application.dart", |
| 15 "//mojo/public/dart/src/buffer.dart", | 17 "//mojo/public/dart/src/buffer.dart", |
| 16 "//mojo/public/dart/src/client.dart", | 18 "//mojo/public/dart/src/client.dart", |
| 17 "//mojo/public/dart/src/codec.dart", | 19 "//mojo/public/dart/src/codec.dart", |
| 18 "//mojo/public/dart/src/data_pipe.dart", | 20 "//mojo/public/dart/src/data_pipe.dart", |
| 21 "//mojo/public/dart/src/drain_data.dart", |
| 19 "//mojo/public/dart/src/event_stream.dart", | 22 "//mojo/public/dart/src/event_stream.dart", |
| 20 "//mojo/public/dart/src/handle.dart", | 23 "//mojo/public/dart/src/handle.dart", |
| 21 "//mojo/public/dart/src/handle_watcher.dart", | 24 "//mojo/public/dart/src/handle_watcher.dart", |
| 22 "//mojo/public/dart/src/interface.dart", | 25 "//mojo/public/dart/src/interface.dart", |
| 23 "//mojo/public/dart/src/message.dart", | 26 "//mojo/public/dart/src/message.dart", |
| 24 "//mojo/public/dart/src/message_pipe.dart", | 27 "//mojo/public/dart/src/message_pipe.dart", |
| 28 "//mojo/public/dart/src/service_provider.dart", |
| 25 "//mojo/public/dart/src/struct.dart", | 29 "//mojo/public/dart/src/struct.dart", |
| 26 "//mojo/public/dart/src/timer_impl.dart", | 30 "//mojo/public/dart/src/timer_impl.dart", |
| 27 "//mojo/public/dart/src/timer_queue.dart", | 31 "//mojo/public/dart/src/timer_queue.dart", |
| 28 "//mojo/public/dart/src/types.dart", | 32 "//mojo/public/dart/src/types.dart", |
| 29 ] | 33 ] |
| 30 output = "$target_gen_dir/snapshot_gen.bin" | 34 output = "$target_gen_dir/snapshot_gen.bin" |
| 31 outputs = [ | 35 outputs = [ |
| 32 output, | 36 output, |
| 33 ] | 37 ] |
| 34 | 38 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 100 |
| 97 defines = [] | 101 defines = [] |
| 98 if (is_debug) { | 102 if (is_debug) { |
| 99 defines += [ "DEBUG" ] | 103 defines += [ "DEBUG" ] |
| 100 } else { | 104 } else { |
| 101 defines += [ "NDEBUG" ] | 105 defines += [ "NDEBUG" ] |
| 102 } | 106 } |
| 103 | 107 |
| 104 include_dirs = [ "//dart/runtime" ] | 108 include_dirs = [ "//dart/runtime" ] |
| 105 } | 109 } |
| OLD | NEW |