Skip to content

Commit 3e3406d

Browse files
devoncarewcommit-bot@chromium.org
authored andcommitted
[sdk] remove the dart:_chrome package
Change-Id: I5b62984fb7d4cd5dd9ed6f4a02ed91e08ed71e8e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/120005 Reviewed-by: Vijay Menon <[email protected]> Commit-Queue: Devon Carew <[email protected]>
1 parent 9d55bb6 commit 3e3406d

File tree

12 files changed

+4
-2545
lines changed

12 files changed

+4
-2545
lines changed

pkg/analysis_server/test/completion_test.dart

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -995,13 +995,11 @@ main(p) {
995995

996996
buildTests('testCompletion_export_dart', '''
997997
import 'dart:math
998-
import 'dart:_chrome
999998
import 'dart:_collection.dev
1000999
export 'dart:!1''', <String>[
10011000
"1+dart:core",
10021001
"1+dart:math",
1003-
"1-dart:_chrome",
1004-
"1-dart:_collection.dev"
1002+
"1-dart:_collection.dev",
10051003
]);
10061004

10071005
buildTests(
@@ -1107,13 +1105,11 @@ import '!1';''', <String>["1+dart:!", "1+package:!"]);
11071105

11081106
buildTests('testCompletion_import_dart', '''
11091107
import 'dart:math
1110-
import 'dart:_chrome
11111108
import 'dart:_collection.dev
11121109
import 'dart:!1''', <String>[
11131110
"1+dart:core",
11141111
"1+dart:math",
1115-
"1-dart:_chrome",
1116-
"1-dart:_collection.dev"
1112+
"1-dart:_collection.dev",
11171113
]);
11181114

11191115
buildTests('testCompletion_import_hasStringLiteral_noSemicolon', '''

pkg/compiler/lib/src/kernel/dart2js_target.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ class Dart2jsTarget extends Target {
151151
// compile-platform should just specify which libraries to compile instead.
152152
const _requiredLibraries = const <String, List<String>>{
153153
'dart2js': const <String>[
154-
'dart:_chrome',
155154
'dart:_foreign_helper',
156155
'dart:_interceptors',
157156
'dart:_internal',

sdk/BUILD.gn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ if (dart_target_arch != "arm") {
195195

196196
# Libraries that go under lib/
197197
_full_sdk_libraries = [
198-
"_chrome",
199198
"_internal",
200199
"async",
201200
"cli",

0 commit comments

Comments
 (0)