[deps] Roll dart-lang/native to new version

We rename the Dart CI specific environment variables we use for testing
dart-lang/native code on Dart CI to make it clear they are for testing
only.

Change-Id: Idb7c016df5b6fd3aee7a2952be06752a8343f02e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/386804
Commit-Queue: Martin Kustermann <kustermann@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
This commit is contained in:
Martin Kustermann
2024-09-25 20:45:11 +00:00
committed by Commit Queue
parent 1c48e59c51
commit 5ede6d466c
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -163,7 +163,7 @@ vars = {
"matcher_rev": "d6d573d0f8d65b36550ce62aad3ce6b5e987b642",
"material_color_utilities_rev": "799b6ba2f3f1c28c67cc7e0b4f18e0c7d7f3c03e",
"mockito_rev": "b66be81e38e1ac76d12ee2fe4f93757a40bbb7ba",
"native_rev": "82c0aacd06e61efd75e61ed85a894cc139a3a3aa", # dart-native-interop-team@ is rolling breaking changes manually while the assets features are in experimental.
"native_rev": "67a258ce5a365f13180978637be0f10996cced43", # dart-native-interop-team@ is rolling breaking changes manually while the assets features are in experimental.
"package_config_rev": "76934c2ca25922ec72909bbff7dfbddaf0d02bd9",
"path_rev": "e969f42ed112dd702a9453beb9df6c12ae2d3805",
"pool_rev": "924fb04353cec915d927f9f1aed88e2eda92b98a",
@@ -13,7 +13,8 @@ void main() async {
test('test environment', () async {
printOnFailure(Platform.environment.toString());
String unparseKey(String key) => key.replaceAll('.', '__').toUpperCase();
String unparseKey(String key) =>
'DART_HOOK_TESTING_${key.replaceAll('.', '__').toUpperCase()}';
final arKey = unparseKey(CCompilerConfigImpl.arConfigKeyFull);
final ccKey = unparseKey(CCompilerConfigImpl.ccConfigKeyFull);
+2 -1
View File
@@ -284,7 +284,8 @@ class TestConfiguration {
}();
late final Map<String, String> nativeCompilerEnvironmentVariables = () {
String unparseKey(String key) => key.replaceAll('.', '__').toUpperCase();
String unparseKey(String key) =>
'DART_HOOK_TESTING_${key.replaceAll('.', '__').toUpperCase()}';
final arKey = unparseKey(CCompilerConfigImpl.arConfigKeyFull);
final ccKey = unparseKey(CCompilerConfigImpl.ccConfigKeyFull);
final ldKey = unparseKey(CCompilerConfigImpl.ldConfigKeyFull);