Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: pkg/kernel/lib/target/flutter.dart

Issue 2793703002: Remove dart:jni library in FlutterTarget (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 library kernel.target.flutter; 4 library kernel.target.flutter;
5 5
6 import '../ast.dart'; 6 import '../ast.dart';
7 import '../transformations/continuation.dart' as cont; 7 import '../transformations/continuation.dart' as cont;
8 import '../transformations/erasure.dart'; 8 import '../transformations/erasure.dart';
9 import '../transformations/sanitize_for_vm.dart'; 9 import '../transformations/sanitize_for_vm.dart';
10 import '../transformations/mixin_full_resolution.dart' as mix; 10 import '../transformations/mixin_full_resolution.dart' as mix;
(...skipping 28 matching lines...) Expand all
39 39
40 'dart:profiler', 40 'dart:profiler',
41 'dart:typed_data', 41 'dart:typed_data',
42 'dart:_vmservice', 42 'dart:_vmservice',
43 'dart:_builtin', 43 'dart:_builtin',
44 'dart:nativewrappers', 44 'dart:nativewrappers',
45 'dart:io', 45 'dart:io',
46 46
47 // Required for flutter. 47 // Required for flutter.
48 'dart:ui', 48 'dart:ui',
49 'dart:jni',
50 'dart:vmservice_sky', 49 'dart:vmservice_sky',
51 ]; 50 ];
52 51
53 void performModularTransformations(Program program) { 52 void performModularTransformations(Program program) {
54 new mix.MixinFullResolution().transform(program); 53 new mix.MixinFullResolution().transform(program);
55 } 54 }
56 55
57 void performGlobalTransformations(Program program) { 56 void performGlobalTransformations(Program program) {
58 cont.transformProgram(program); 57 cont.transformProgram(program);
59 58
60 // Repair `_getMainClosure()` function in dart:{_builtin,ui} libraries. 59 // Repair `_getMainClosure()` function in dart:{_builtin,ui} libraries.
61 setup_builtin_library.transformProgram(program); 60 setup_builtin_library.transformProgram(program);
62 setup_builtin_library.transformProgram(program, libraryUri: 'dart:ui'); 61 setup_builtin_library.transformProgram(program, libraryUri: 'dart:ui');
63 62
64 if (strongMode) { 63 if (strongMode) {
65 new Erasure().transform(program); 64 new Erasure().transform(program);
66 } 65 }
67 66
68 new SanitizeForVM().transform(program); 67 new SanitizeForVM().transform(program);
69 } 68 }
70 } 69 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698