Make dart:ui more consistent with other built in libraries (#3609)

The other libraries don't repeat the "dart" name in their path inside the
package.
This commit is contained in:
Adam Barth 2017-04-19 13:20:30 -07:00 committed by GitHub
parent 4eed7d2732
commit fd286ae445
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ copy("copy_dart_ui") {
sources = dart_ui_files
outputs = [
"$root_gen_dir/dart-pkg/sky_engine/lib/dart_ui/{{source_file_part}}",
"$root_gen_dir/dart-pkg/sky_engine/lib/ui/{{source_file_part}}",
]
}

View File

@ -8,7 +8,7 @@ embedded_libs:
"dart:isolate": "isolate/isolate.dart"
"dart:math": "math/math.dart"
"dart:typed_data": "typed_data/typed_data.dart"
"dart:ui": "dart_ui/ui.dart"
"dart:ui": "ui/ui.dart"
# The internal library is needed as some implementations bleed into the public
# API, e.g. List being Iterable by virtue of implementing
# EfficientLengthIterable.