21f32e7383
Recent changes to GN require only buildable files to be included in sources. See crbug.com/gn/77 for additional details. Change-Id: Ic8fd059e85ba86a63c5d6483e8ec64ddbd1612ea Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/103022 Reviewed-by: Zach Anderson <zra@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
# 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",
|
|
]
|