Index: build/android/pylib/constants.py |
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py |
index 519cc973634aac792307fd4082e0ad440e7e8b52..a04d2d2b14507343d6c453d1fb539d0804eff6fa 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,7 @@ def _GetADBPath(): |
ADB_PATH = _GetADBPath() |
+ |
+# Exit codes |
+ERROR_EXIT_CODE = 1 |
+WARNING_EXIT_CODE = 88 |