| 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 import("//mojo/dart/packages/mojo/sources.gni") | 7 import("//mojo/dart/packages/mojo/sources.gni") |
| 8 import("//mojo/dart/packages/mojo/sdk_ext_sources.gni") | 8 import("//mojo/dart/packages/mojo/sdk_ext_sources.gni") |
| 9 | 9 |
| 10 group("embedder") { |
| 11 deps = [ |
| 12 ":dart_controller_no_snapshot", |
| 13 ":generate_snapshot_file", |
| 14 "//mojo/dart/embedder/snapshotter", |
| 15 ] |
| 16 } |
| 17 |
| 10 source_set("dart_controller_no_snapshot") { | 18 source_set("dart_controller_no_snapshot") { |
| 11 sources = [ | 19 sources = [ |
| 12 "$target_gen_dir/dart_embedder_patch_resources.cc", | 20 "$target_gen_dir/dart_embedder_patch_resources.cc", |
| 13 "$target_gen_dir/dart_embedder_service_isolate_resources.cc", | 21 "$target_gen_dir/dart_embedder_service_isolate_resources.cc", |
| 14 "builtin.cc", | 22 "builtin.cc", |
| 15 "builtin.h", | 23 "builtin.h", |
| 16 "builtin_natives.cc", | 24 "builtin_natives.cc", |
| 17 "common.cc", | 25 "common.cc", |
| 18 "common.h", | 26 "common.h", |
| 19 "dart_controller.cc", | 27 "dart_controller.cc", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 258 |
| 251 source_set("dart_snapshot_cc") { | 259 source_set("dart_snapshot_cc") { |
| 252 sources = [ | 260 sources = [ |
| 253 "$root_gen_dir/dart_snapshot.cc", | 261 "$root_gen_dir/dart_snapshot.cc", |
| 254 ] | 262 ] |
| 255 | 263 |
| 256 deps = [ | 264 deps = [ |
| 257 ":generate_snapshot_file", | 265 ":generate_snapshot_file", |
| 258 ] | 266 ] |
| 259 } | 267 } |
| OLD | NEW |