Remove _webdevSoundSmoke workaround.

Change-Id: I866f388fa2b659505868b3ffe59eed5085b1ccfc
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/328481
Auto-Submit: Jonas Termansen <sortie@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
Commit-Queue: Alexander Thomas <athom@google.com>
This commit is contained in:
Jonas Termansen 2023-09-28 15:58:08 +00:00 committed by Commit Queue
parent df654c584f
commit a35c8d5a63

View file

@ -141,12 +141,6 @@ void writeIfDifferent(File file, String contents) {
Iterable<Package> makePackageConfigs(List<String> packageDirs) sync* {
for (var packageDir in packageDirs) {
var name = pubspecName(packageDir);
// TODO(https://github.com/dart-lang/webdev/issues/2201): Wait for webdev
// to roll in the fix for the pubspec and then remove this workaround.
if (posix(packageDir) ==
'third_party/pkg/webdev/fixtures/_webdevSoundSmoke') {
name = '_webdev_sound_smoke';
}
var version = pubspecLanguageVersion(packageDir);
var hasLibDirectory =
Directory(join(repoRoot, packageDir, 'lib')).existsSync();