1b5ece0f06
This deletes the previous hand-built drivers and the distinction between a debug and non-debug driver. Bug: skia: Change-Id: Ia733783d703da803f76361c61b938d9ce70c88f0 Reviewed-on: https://skia-review.googlesource.com/150163 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
17 lines
278 B
Python
Executable File
17 lines
278 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2017 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
"""Download the current version of the asset."""
|
|
|
|
|
|
import common
|
|
|
|
|
|
if __name__ == '__main__':
|
|
common.run('download')
|