From be7b88c1454cc7d1b2b47c91a67c362713f3384d Mon Sep 17 00:00:00 2001 From: Yura Yaroshevich Date: Tue, 13 Mar 2018 13:12:56 +0300 Subject: [PATCH] Add additional comment for --extra-gn-args in build_aar.py. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:9003 Change-Id: I6387b097b13b82477bd161093c00985070147953 Reviewed-on: https://webrtc-review.googlesource.com/61323 Reviewed-by: Sami Kalliomäki Commit-Queue: Sami Kalliomäki Cr-Commit-Position: refs/heads/master@{#22402} --- tools_webrtc/android/build_aar.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools_webrtc/android/build_aar.py b/tools_webrtc/android/build_aar.py index 0ddca2fd5e..5a7b56e53f 100755 --- a/tools_webrtc/android/build_aar.py +++ b/tools_webrtc/android/build_aar.py @@ -66,7 +66,9 @@ def _ParseArgs(): parser.add_argument('--verbose', action='store_true', default=False, help='Debug logging.') parser.add_argument('--extra-gn-args', default=[], nargs='*', - help='Additional GN args to be used during Ninja generation.') + help="""Additional GN arguments to be used during Ninja generation. + These are applied after any other arguments and will + override any values defined by the script.""") return parser.parse_args()