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

Unified Diff: sky/tools/skyx.py

Issue 1227973002: Build skyx packages by default (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: typo Created 5 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
« no previous file with comments | « sky/shell/BUILD.gn ('k') | sky/tools/skyx/pubspec.lock » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/skyx.py
diff --git a/sky/tools/skyx.py b/sky/tools/skyx.py
index 094b35abd6d158b055b7a839274b6e7af0352260..07fb84fd7fd6e8fb0a57227c40c9d4eeb14b491f 100755
--- a/sky/tools/skyx.py
+++ b/sky/tools/skyx.py
@@ -14,6 +14,7 @@ DART_SDK = os.path.join(SRC_ROOT, 'third_party', 'dart-sdk', 'dart-sdk', 'bin')
def main():
parser = argparse.ArgumentParser(description='Packaging tool for Sky apps')
+ parser.add_argument('--package-root', type=str)
parser.add_argument('--manifest', type=str)
parser.add_argument('--asset-base', type=str)
parser.add_argument('--snapshot', type=str)
@@ -22,6 +23,7 @@ def main():
command = [
os.path.join(DART_SDK, 'dart'),
+ '--package-root=%s' % args.package_root,
os.path.join(SKY_TOOLS_DIR, 'skyx', 'bin', 'skyx.dart'),
'--asset-base', args.asset_base,
'--snapshot', args.snapshot,
« no previous file with comments | « sky/shell/BUILD.gn ('k') | sky/tools/skyx/pubspec.lock » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698