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

Unified Diff: tests/utils/dummy_compiler_test.dart

Issue 1408253006: Introduce "platform configurations" to replace categories and libraries.dart. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address review comments. Update create_sdk.gyp, create_sdk.py Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: tests/utils/dummy_compiler_test.dart
diff --git a/tests/utils/dummy_compiler_test.dart b/tests/utils/dummy_compiler_test.dart
index 43a79c58c51c70b3a3868953123a757f0f5c2441..608e0996686473dd6509b3daaeb00c21423f6f5f 100644
--- a/tests/utils/dummy_compiler_test.dart
+++ b/tests/utils/dummy_compiler_test.dart
@@ -15,7 +15,9 @@ import 'package:compiler/compiler.dart';
import '../compiler/dart2js/mock_libraries.dart';
String libProvider(Uri uri) {
- if (uri.path.endsWith("/core.dart")) {
+ if (uri.path.endsWith(".platform")) {
+ return DEFAULT_PLATFORM_CONFIG;
+ } if (uri.path.endsWith("/core.dart")) {
return buildLibrarySource(DEFAULT_CORE_LIBRARY);
} else if (uri.path.endsWith('core_patch.dart')) {
return DEFAULT_PATCH_CORE_SOURCE;

Powered by Google App Engine
This is Rietveld 408576698