From 7d92103f9ebed04c54f4ec8636f98dc0e4fc3056 Mon Sep 17 00:00:00 2001 From: Mike Klein Date: Thu, 5 Jan 2017 12:20:41 -0500 Subject: GN: add skia_android_serial and push_$foo targets when it's set E.g. $ ninja -C out push_dm By default (ninja -C out) everything is built and pushed if skia_android_serial is set. Dependencies are tracked, so incremental builds push only executables that have changed. Change-Id: I586d81791f5f877b173cf61ed68fa9aab96234d2 Reviewed-on: https://skia-review.googlesource.com/6616 Reviewed-by: Derek Sollenberger Commit-Queue: Mike Klein --- gn/push_to_android.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 gn/push_to_android.py (limited to 'gn/push_to_android.py') diff --git a/gn/push_to_android.py b/gn/push_to_android.py new file mode 100755 index 0000000000..b9ab36fa52 --- /dev/null +++ b/gn/push_to_android.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +# +# Copyright 2016 Google Inc. +# +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import os +import subprocess +import sys + +host, serial, stamp = sys.argv[1:] +device = '/data/local/tmp/' + os.path.basename(host) + +# adb push is verbose, so eat its output with check_output(). +subprocess.check_output(['adb', '-s', serial, 'push', host, device]) +subprocess.check_call(['adb', '-s', serial, 'shell', 'chmod', '+x', device]) + +# Touch a file to let GN/Ninja know we succeeded. +with open(stamp, 'w'): + pass -- cgit v1.2.3