summaryrefslogtreecommitdiffstats
path: root/build/get_sdk_extras_packages.py
blob: 6d870cc86f1b970d6b2a0ffefa7630b722c3b087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
# Copyright (c) 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import json
import os
import sys

SDK_EXTRAS_JSON_FILE = os.path.join(os.path.dirname(__file__),
                                    'android_sdk_extras.json')

def main():
  with open(SDK_EXTRAS_JSON_FILE) as json_file:
    packages = json.load(json_file)
  for package in packages:
    print package['package'].replace('_', ' ')


if __name__ == '__main__':
  sys.exit(main())