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

Unified Diff: sdk/lib/_internal/pub/lib/src/dart.dart

Issue 194863003: Don't include source maps in release mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't include source maps at all in release builds. Created 6 years, 9 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: sdk/lib/_internal/pub/lib/src/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index 7da4b172def7809d4e25f9a772d3792f2b7db6a6..530c798c3b4ab9b159a6900534b729ffbdc88f14 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -62,6 +62,7 @@ Future compile(String entrypoint, CompilerProvider provider, {
bool suppressHints: false,
bool suppressPackageWarnings: true,
bool terse: false,
+ bool includeSourceMapUrls: false,
bool toDart: false}) {
return syncFuture(() {
var options = <String>['--categories=Client,Server'];
@@ -76,9 +77,11 @@ Future compile(String entrypoint, CompilerProvider provider, {
if (toDart) options.add('--output-type=dart');
// Add the source map URLs.
- var sourceUrl = path.toUri(entrypoint);
- options.add("--out=$sourceUrl.js");
- options.add("--source-map=$sourceUrl.js.map");
+ if (includeSourceMapUrls) {
+ var sourceUrl = path.toUri(entrypoint);
+ options.add("--out=$sourceUrl.js");
+ options.add("--source-map=$sourceUrl.js.map");
+ }
if (environment == null) environment = {};
if (commandLineOptions != null) options.addAll(commandLineOptions);

Powered by Google App Engine
This is Rietveld 408576698