| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 source_set("bindings-dart") { | 3 source_set("bindings-dart") { |
| 4 sources = [ | 4 sources = [ |
| 5 "dart_master.h", | 5 "dart_master.h", |
| 6 "dart_master.cpp" | 6 "dart_master.cc" |
| 7 ] | 7 ] |
| 8 deps = [ | 8 deps = [ |
| 9 ":dart_controller", | 9 ":dart_controller", |
| 10 "//dart/runtime/bin:libdart_withcore", | 10 "//dart/runtime/bin:libdart_withcore", |
| 11 "//base:base" | 11 "//base:base" |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 action("generate_snapshot_bin") { | 15 action("generate_snapshot_bin") { |
| 16 deps = [ | 16 deps = [ |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 source_set("dart_controller") { | 62 source_set("dart_controller") { |
| 63 sources = [ | 63 sources = [ |
| 64 "$target_gen_dir/snapshot.cc", | 64 "$target_gen_dir/snapshot.cc", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 deps = [ | 67 deps = [ |
| 68 ":generate_snapshot_file" | 68 ":generate_snapshot_file" |
| 69 ] | 69 ] |
| 70 } | 70 } |
| 71 | 71 |
| OLD | NEW |