| Index: runtime/BUILD.gn
|
| diff --git a/runtime/BUILD.gn b/runtime/BUILD.gn
|
| index c74e0c4895b3b5d07db4cd75fb256bbacd7cf2d3..f5c13e9615d0456d9d613f247ce89c414817e7dd 100644
|
| --- a/runtime/BUILD.gn
|
| +++ b/runtime/BUILD.gn
|
| @@ -259,7 +259,11 @@ libdart_library("libdart_with_precompiler") {
|
|
|
| action("generate_version_cc_file") {
|
| deps = [
|
| - ":libdart_dependency_helper",
|
| + "third_party/double-conversion/src:libdouble_conversion",
|
| + "vm:libdart_lib_jit",
|
| + "vm:libdart_lib_nosnapshot_with_precompiler",
|
| + "vm:libdart_vm_jit",
|
| + "vm:libdart_vm_nosnapshot_with_precompiler",
|
| ]
|
| inputs = [
|
| "../tools/utils.py",
|
| @@ -281,23 +285,3 @@ action("generate_version_cc_file") {
|
| rebase_path("vm/version_in.cc", root_build_dir),
|
| ]
|
| }
|
| -
|
| -executable("libdart_dependency_helper") {
|
| - configs += [
|
| - ":dart_config",
|
| - ":dart_maybe_product_config",
|
| - ]
|
| - if (is_fuchsia) {
|
| - configs -= [ "//build/config:symbol_visibility_hidden" ]
|
| - }
|
| - deps = [
|
| - "third_party/double-conversion/src:libdouble_conversion",
|
| - "vm:libdart_lib_jit",
|
| - "vm:libdart_lib_nosnapshot_with_precompiler",
|
| - "vm:libdart_vm_jit",
|
| - "vm:libdart_vm_nosnapshot_with_precompiler",
|
| - ]
|
| - sources = [
|
| - "vm/libdart_dependency_helper.cc",
|
| - ]
|
| -}
|
|
|