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 # embedder specific template rules. | 5 # embedder specific template rules. |
6 import("embedder.gni") | 6 import("embedder.gni") |
7 | 7 |
8 source_set("dart_controller_no_snapshot") { | 8 source_set("dart_controller_no_snapshot") { |
9 sources = [ | 9 sources = [ |
10 "$target_gen_dir/dart_embedder_patch_resources.cc", | 10 "$target_gen_dir/dart_embedder_patch_resources.cc", |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 "--vm_input_bin", | 404 "--vm_input_bin", |
405 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"), | 405 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"), |
406 "--input_bin", | 406 "--input_bin", |
407 rebase_path("$target_gen_dir/isolate_snapshot.bin"), | 407 rebase_path("$target_gen_dir/isolate_snapshot.bin"), |
408 "--input_cc", | 408 "--input_cc", |
409 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"), | 409 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"), |
410 "--output", | 410 "--output", |
411 rebase_path(output), | 411 rebase_path(output), |
412 ] | 412 ] |
413 } | 413 } |
| 414 |
| 415 source_set("dart_snapshot_cc") { |
| 416 sources = [ |
| 417 "$root_gen_dir/dart_snapshot.cc", |
| 418 ] |
| 419 |
| 420 deps = [ |
| 421 ":generate_snapshot_file", |
| 422 ] |
| 423 } |
OLD | NEW |