| Index: mojo/devtools/common/android_stack_parser/symbol.py
|
| diff --git a/mojo/devtools/common/android_stack_parser/symbol.py b/mojo/devtools/common/android_stack_parser/symbol.py
|
| index 797326c402ea9fb8730aa6f6f9a86d7594be14db..a0ae6a038fd1adbe0c84058e0d5229bdbc901105 100644
|
| --- a/mojo/devtools/common/android_stack_parser/symbol.py
|
| +++ b/mojo/devtools/common/android_stack_parser/symbol.py
|
| @@ -25,7 +25,7 @@ import subprocess
|
| import zipfile
|
|
|
| NDK_DIR = ""
|
| -BUILD_DIR = ""
|
| +BUILD_DIRS = []
|
| SYMBOLS_DIR = ""
|
|
|
| ARCH = "arm"
|
| @@ -190,7 +190,7 @@ def GetCandidates(filepart, candidate_fun, relative_dirs=None):
|
| Returns:
|
| A list of candidate files ordered by modification time, newest first.
|
| """
|
| - candidates = [BUILD_DIR]
|
| + candidates = list(BUILD_DIRS)
|
|
|
| if relative_dirs:
|
| candidates = PathListJoin(candidates, relative_dirs)
|
|
|