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

Unified Diff: build/get_sdk_extras_packages.py

Issue 2392643003: Removes files from //build that we don't need (Closed)
Patch Set: Created 4 years, 2 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 | « build/get_landmines.py ('k') | build/get_syzygy_binaries.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/get_sdk_extras_packages.py
diff --git a/build/get_sdk_extras_packages.py b/build/get_sdk_extras_packages.py
deleted file mode 100755
index a90b8a8b4a4f224f73abf8e45dadbe16622d89d5..0000000000000000000000000000000000000000
--- a/build/get_sdk_extras_packages.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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)
-
- out = []
- for package in packages:
- out.append(package['package_id'])
-
- print ','.join(out)
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « build/get_landmines.py ('k') | build/get_syzygy_binaries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698