Index: build/android/gyp/write_ordered_libraries.py |
diff --git a/build/android/gyp/write_ordered_libraries.py b/build/android/gyp/write_ordered_libraries.py |
index 4ca54cd62da4719e7c3158c49d4d89a563fffc8b..338090f0554038a14ba72e76b853a355d2d50011 100755 |
--- a/build/android/gyp/write_ordered_libraries.py |
+++ b/build/android/gyp/write_ordered_libraries.py |
@@ -26,10 +26,7 @@ import os |
import re |
import sys |
-BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..') |
-sys.path.append(BUILD_ANDROID_DIR) |
- |
-from pylib import build_utils |
+from util import build_utils |
_options = None |
@@ -52,7 +49,7 @@ def CallReadElf(library_name): |
readelf_cmd = [_options.readelf, |
'-d', |
FullLibraryPath(library_name)] |
- return build_utils.CheckCallDie(readelf_cmd) |
+ return build_utils.CheckCallDie(readelf_cmd, suppress_output=True) |
def GetDependencies(library_name): |