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

Unified Diff: pkg/front_end/test/subpackage_relationships_test.dart

Issue 2877193003: Start actually adding incrementality into incremental kernel generator. (Closed)
Patch Set: Fixes for review comments. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/test/subpackage_relationships_test.dart
diff --git a/pkg/front_end/test/subpackage_relationships_test.dart b/pkg/front_end/test/subpackage_relationships_test.dart
index 6d4e05d7b30872d6fd7bf602488bd86d819dd561..d3be7ff11c001306146bd2dedbdfac9b02c09a86 100644
--- a/pkg/front_end/test/subpackage_relationships_test.dart
+++ b/pkg/front_end/test/subpackage_relationships_test.dart
@@ -28,7 +28,8 @@ final subpackageRules = {
'lib/src/base',
'lib/src/fasta',
'lib/src/fasta/dill',
- 'lib/src/fasta/kernel'
+ 'lib/src/fasta/kernel',
+ 'lib/src/incremental'
]),
'lib/src': new SubpackageRules(mayImportAnalyzer: true, allowedDependencies: [
'lib',
@@ -40,7 +41,8 @@ final subpackageRules = {
'lib/src/incremental',
]),
'lib/src/base': new SubpackageRules(
- mayImportAnalyzer: true, allowedDependencies: ['lib', "lib/src/fasta"]),
+ mayImportAnalyzer: true,
+ allowedDependencies: ['lib', "lib/src/fasta", 'lib/src/incremental']),
'lib/src/codegen': new SubpackageRules(),
'lib/src/fasta': new SubpackageRules(allowedDependencies: [
'lib',

Powered by Google App Engine
This is Rietveld 408576698