| # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| # for details. All rights reserved. Use of this source code is governed by a |
| # BSD-style license that can be found in the LICENSE file. |
| |
| # Sources visible via default library. |
| |
| core_runtime_cc_files = [ |
| "array.cc", |
| "bool.cc", |
| "date.cc", |
| "double.cc", |
| "errors.cc", |
| "function.cc", |
| "growable_array.cc", |
| "identical.cc", |
| "integers.cc", |
| "invocation_mirror.h", |
| "object.cc", |
| "regexp.cc", |
| "stacktrace.cc", |
| "stacktrace.h", |
| "stopwatch.cc", |
| "string.cc", |
| "uri.cc", |
| "weak_property.cc", |
| ] |
| |
| core_runtime_dart_files = [ |
| "core_patch.dart", |
| |
| # The above file needs to be first as it imports required libraries. |
| "array.dart", |
| "array_patch.dart", |
| "bigint_patch.dart", |
| "bool_patch.dart", |
| "date_patch.dart", |
| "double.dart", |
| "double_patch.dart", |
| "errors_patch.dart", |
| "expando_patch.dart", |
| "function.dart", |
| "function_patch.dart", |
| "growable_array.dart", |
| "identical_patch.dart", |
| "immutable_map.dart", |
| "integers.dart", |
| "integers_patch.dart", |
| "invocation_mirror_patch.dart", |
| "lib_prefix.dart", |
| "map_patch.dart", |
| "null_patch.dart", |
| "object_patch.dart", |
| "regexp_patch.dart", |
| "stacktrace.dart", |
| "stopwatch_patch.dart", |
| "string_buffer_patch.dart", |
| "string_patch.dart", |
| "type_patch.dart", |
| "uri_patch.dart", |
| "weak_property.dart", |
| ] |
| |
| core_runtime_sources = core_runtime_cc_files + core_runtime_dart_files |