537d9c0229
Motivation: delete unnecessary code. ResourceFactory.h provides a much more flexible way of fixing the same problem. Change-Id: Ib8a3ce25ce98e4f752dc1e7ce88eb9ceb95a4372 Reviewed-on: https://skia-review.googlesource.com/101920 Reviewed-by: Derek Sollenberger <djsollen@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
21 lines
631 B
Python
Executable File
21 lines
631 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
# Copyright 2018 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 shutil
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
skia = os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir)
|
|
dst = os.path.join(skia, 'platform_tools', 'android', 'apps', 'skqp',
|
|
'src', 'main', 'assets', 'resources')
|
|
if os.path.isdir(dst) and not os.path.islink(dst):
|
|
shutil.rmtree(dst)
|
|
elif os.path.exists(dst):
|
|
os.remove(dst)
|
|
shutil.copytree(os.path.join(skia, 'resources'), dst)
|
|
|