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

Unified Diff: third_party/android_platform/development/scripts/symbol.py

Issue 1551993003: Remove lib.target from search paths in adb_gdb and symbol.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/android/adb_gdb ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/android_platform/development/scripts/symbol.py
diff --git a/third_party/android_platform/development/scripts/symbol.py b/third_party/android_platform/development/scripts/symbol.py
index 82fb1d79b1fe6e98d60c7f173eece77d65478924..6bc35d57d4fc003e4a8af50bf24c41f096d3b4dd 100755
--- a/third_party/android_platform/development/scripts/symbol.py
+++ b/third_party/android_platform/development/scripts/symbol.py
@@ -301,7 +301,9 @@ def GetLibrarySearchPaths():
if CHROME_SYMBOLS_DIR:
return [CHROME_SYMBOLS_DIR]
dirs = _GetChromeOutputDirCandidates()
- return PathListJoin(dirs, ['lib.unstripped', 'lib', 'lib.target', '.'])
+ # GYP places unstripped libraries under out/$BUILDTYPE/lib
+ # GN places them under out/$BUILDTYPE/lib.unstripped
+ return PathListJoin(dirs, ['lib.unstripped', 'lib', '.'])
def GetCandidateLibraries(library_name):
"""Returns a list of candidate library filenames.
« no previous file with comments | « build/android/adb_gdb ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698