()
| 31 | |
| 32 | |
| 33 | def parse_args(): |
| 34 | parser = argparse.ArgumentParser(description='Bootstrap this project') |
| 35 | parser.add_argument('-u', '--url', |
| 36 | help='The base URL from which to download ' |
| 37 | 'libchromiumcontent (i.e., the URL you passed to ' |
| 38 | 'libchromiumcontent\'s script/upload script', |
| 39 | default=BASE_URL, |
| 40 | required=False) |
| 41 | return parser.parse_args() |
| 42 | |
| 43 | |
| 44 | def update_submodules(): |