| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 ] | 233 ] |
| 234 } | 234 } |
| 235 | 235 |
| 236 action("pub_build_observatory") { | 236 action("pub_build_observatory") { |
| 237 sources = | 237 sources = |
| 238 rebase_path(observatory_sources_gypi.sources, | 238 rebase_path(observatory_sources_gypi.sources, |
| 239 "", | 239 "", |
| 240 "$root_gen_dir/observatory_copy/dart/runtime/observatory") | 240 "$root_gen_dir/observatory_copy/dart/runtime/observatory") |
| 241 | 241 |
| 242 deps = [ | 242 deps = [ |
| 243 ":copy_observatory", |
| 243 ":copy_observatory_deps", | 244 ":copy_observatory_deps", |
| 244 ] | 245 ] |
| 245 | 246 |
| 246 script = "//dart/tools/observatory_tool.py" | 247 script = "//dart/tools/observatory_tool.py" |
| 247 | 248 |
| 248 inputs = [ | 249 inputs = [ |
| 249 script, | 250 script, |
| 250 ] | 251 ] |
| 251 inputs += sources | 252 inputs += sources |
| 252 | 253 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 "--vm_input_bin", | 406 "--vm_input_bin", |
| 406 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"), | 407 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"), |
| 407 "--input_bin", | 408 "--input_bin", |
| 408 rebase_path("$target_gen_dir/isolate_snapshot.bin"), | 409 rebase_path("$target_gen_dir/isolate_snapshot.bin"), |
| 409 "--input_cc", | 410 "--input_cc", |
| 410 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"), | 411 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"), |
| 411 "--output", | 412 "--output", |
| 412 rebase_path(output), | 413 rebase_path(output), |
| 413 ] | 414 ] |
| 414 } | 415 } |
| OLD | NEW |