Browse Source

Adds --chromium_dir argument to script/create-dist.py

Giacomo Furlan 7 years ago
parent
commit
789dbb2dbb
1 changed files with 5 additions and 0 deletions
  1. 5 0
      script/create-dist.py

+ 5 - 0
script/create-dist.py

@@ -82,6 +82,9 @@ TARGET_DIRECTORIES = {
 def main():
   args = parse_args()
 
+  if args.chromium_dir:
+    globals().update(CHROMIUM_DIR=args.chromium_dir)
+
   if args.verbose:
     enable_verbose_mode()
 
@@ -319,6 +322,8 @@ def parse_args():
   parser.add_argument('--no_api_docs',
                       action='store_true',
                       help='Skip generating the Electron API Documentation!')
+  parser.add_argument('--chromium_dir',
+                     help='Specify a custom libchromiumcontent dist directory if manually compiled')
   parser.add_argument('-v', '--verbose',
                       action='store_true',
                       help='Prints the output of the subprocesses')