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

Unified Diff: build/toolchain/android/find_android_compiler.py

Issue 461463002: Remove unused gn tool script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/android/find_android_compiler.py
diff --git a/build/toolchain/android/find_android_compiler.py b/build/toolchain/android/find_android_compiler.py
deleted file mode 100644
index d806ead80d554d76e205d8e1b4c60692a32bae1b..0000000000000000000000000000000000000000
--- a/build/toolchain/android/find_android_compiler.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2013 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.
-
-# This script locates the Android compilers given the bin directory of the
-# android toolchain.
-
-import glob
-import subprocess
-import sys
-
-if len(sys.argv) != 2:
- print "Error: expecting one argument of the android toolchain dir."
- sys.exit(1)
-
-# TODO(brettw) this logic seems like a bad idea. It was copied from
-# common.gypi. It seems like the toolchain should just know the name given the
-# current platform rather than having to rely on glob.
-android_toolchain = sys.argv[1]
-cc = glob.glob(android_toolchain + "/*-gcc")
-cxx = glob.glob(android_toolchain + "/*-g++")
-
-# We tolerate "no matches." In the Android AOSP WebView build, it runs this
-# logic and the directory doesn't exist, giving no matches. But that build runs
-# GYP to generate Android Makefiles which specify the compiler separately. So
-# all we need to do in this case is ignore the error and continue with empty
-# target compilers.
-if len(cc) == 0:
- cc = [""]
-if len(cxx) == 0:
- cxx = [""]
-if len(cc) != 1 or len(cxx) != 1:
- print "More than one matching compiler."
- sys.exit(1)
-
-# Get the host compilers from the current path.
-which_gcc = subprocess.check_output(["which gcc"], shell=True).strip()
-which_gxx = subprocess.check_output(["which g++"], shell=True).strip()
-
-print ('["' + cc[0] + '","' + cxx[0] + '","' + which_gcc + '","' +
- which_gxx + '"]')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698