Chromium Code Reviews| Index: build/android/pylib/constants.py |
| diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py |
| index 519cc973634aac792307fd4082e0ad440e7e8b52..b8e22f2fc4a8517d02c7d79b2f63f7cc7a3585c3 100644 |
| --- a/build/android/pylib/constants.py |
| +++ b/build/android/pylib/constants.py |
| @@ -6,7 +6,6 @@ |
| import os |
| import subprocess |
| -import sys |
| DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), |
| @@ -98,3 +97,8 @@ def _GetADBPath(): |
| ADB_PATH = _GetADBPath() |
| + |
| +# Exit codes |
| +NORMAL_EXIT_CODE = 0 |
| +ERROR_EXIT_CODE = 1 |
| +WARNING_EXIT_CODE = 88 |