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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 424213004: Fix CSP mode of the polymer compiler. Turns out that inline Javascript <script> (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index ee50cfa963f15eac839f82c4823570d6b7a6a668..a1ac5abf9b6cec08892db06a88aa255100914efa 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -1343,6 +1343,7 @@ class StandardTestSuite extends TestSuite {
..add('--test')..add(inputFile)
..add('--out')..add(outputDir)
..add('--file-filter')..add('.svn');
+ if (configuration['csp']) args.add('--csp');
Siggi Cherem (dart-lang) 2014/07/29 21:30:54 Rico - I'm basically adding this back now that the
ricow1 2014/07/30 09:15:47 sgtm
return CommandBuilder.instance.getProcessCommand(
'polymer_deploy', dartVmBinaryFileName, args, environmentOverrides);

Powered by Google App Engine
This is Rietveld 408576698