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

Unified Diff: tools/android_link.py

Issue 350483003: Build Tools Cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more fixes as reviewed by ricow Created 6 years, 6 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 | « no previous file | tools/archive_crash.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android_link.py
diff --git a/tools/android_link.py b/tools/android_link.py
index a00030c2374185561311ee187d1d2a1dc144f023..12cb547258ddea0398a3f509762eeab8597d4295 100755
--- a/tools/android_link.py
+++ b/tools/android_link.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-# Copyright (c) 2012 The Dart Authors. All rights reserved.
+# Copyright (c) 2014 The Dart Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -11,7 +11,6 @@ Usage:
[linker args]
"""
-import optparse
import os
import subprocess
import sys
@@ -69,7 +68,7 @@ def main():
sys.exit(0)
# Set up path to the Android NDK.
- CheckDirExists(THIRD_PARTY_ROOT, 'third party tools');
+ CheckDirExists(THIRD_PARTY_ROOT, 'third party tools')
android_tools = os.path.join(THIRD_PARTY_ROOT, 'android_tools')
CheckDirExists(android_tools, 'Android tools')
android_ndk_root = os.path.join(android_tools, 'ndk')
« no previous file with comments | « no previous file | tools/archive_crash.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698