Include --buildbot boolean flag in build_tools.py
Test: scripts/build_tools.py --build_bot
Bug: 321250485
Change-Id: I85cbb4e5ee304b54c8b82176459e5ad8825944cf
diff --git a/scripts/build_tools.py b/scripts/build_tools.py
index 973242a..3d75bdf 100755
--- a/scripts/build_tools.py
+++ b/scripts/build_tools.py
@@ -73,6 +73,9 @@
parser.add_argument(
"--with_debug", action="store_true", help="Build debug instead of release"
)
+ parser.add_argument(
+ "--buildbot", action="store_true", help="Invoked by Android buildbots"
+ )
args = parser.parse_args()