b718fbb7f4
Bug: skia:7249 NOTRY=true Change-Id: I7ab6bc28d567ca5ae75df9c1e56b46c307032024 Reviewed-on: https://skia-review.googlesource.com/66143 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
65 lines
1.6 KiB
Python
Executable File
65 lines
1.6 KiB
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.
|
|
|
|
|
|
"""Create the asset."""
|
|
|
|
|
|
import argparse
|
|
import glob
|
|
import os
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
def create_asset(target_dir, gl_path):
|
|
"""Create the asset."""
|
|
|
|
cmd = [
|
|
'sudo','apt-get','install',
|
|
'libgles2-mesa-dev',
|
|
'libegl1-mesa-dev'
|
|
]
|
|
print 'About to run:'
|
|
print ' '.join(cmd)
|
|
print 'Press Enter to Continue'
|
|
raw_input()
|
|
subprocess.check_call(cmd)
|
|
|
|
|
|
lib_dir = os.path.join(target_dir, 'lib')
|
|
os.mkdir(lib_dir)
|
|
|
|
to_copy = glob.glob(os.path.join(gl_path,'libGL*'))
|
|
to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*')))
|
|
to_copy.extend(glob.glob(os.path.join(gl_path,'libdrm*')))
|
|
for f in to_copy:
|
|
shutil.copy(f, lib_dir)
|
|
|
|
include_dir = os.path.join(target_dir, 'include')
|
|
os.mkdir(include_dir)
|
|
shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL'))
|
|
shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR'))
|
|
shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2'))
|
|
shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
|
|
|
|
|
|
def main():
|
|
if 'linux' not in sys.platform:
|
|
print >> sys.stderr, 'This script only runs on Linux.'
|
|
sys.exit(1)
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--target_dir', '-t', required=True)
|
|
parser.add_argument('--lib_path', '-l', required=True)
|
|
args = parser.parse_args()
|
|
create_asset(args.target_dir, args.lib_path)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|