Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tool/lib/commands/serve.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const _buildAppFlag = 'build-app';
// AllowAnythingParser instead of manually passing these args through.
const _machineFlag = 'machine';
const _dtdUriFlag = 'dtd-uri';
const _dtdExposedUriFlag = 'dtd-exposed-uri';
const _allowEmbeddingFlag = 'allow-embedding';

/// This command builds DevTools in release mode by running the
Expand Down Expand Up @@ -103,6 +104,11 @@ class ServeCommand extends Command {
_dtdUriFlag,
help: 'Sets the dtd uri when starting the devtools server',
)
..addOption(
_dtdExposedUriFlag,
help:
'Sets the dtd uri that is exposed to the client when starting the devtools server',
)
..addFlag(
_allowEmbeddingFlag,
help: 'Allow embedding DevTools inside an iframe.',
Expand Down
Loading