1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/tools/gyp/setup.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +#!/usr/bin/env python 1.5 + 1.6 +# Copyright (c) 2009 Google Inc. All rights reserved. 1.7 +# Use of this source code is governed by a BSD-style license that can be 1.8 +# found in the LICENSE file. 1.9 + 1.10 +from distutils.core import setup 1.11 +from distutils.command.install import install 1.12 +from distutils.command.install_lib import install_lib 1.13 +from distutils.command.install_scripts import install_scripts 1.14 + 1.15 +setup( 1.16 + name='gyp', 1.17 + version='0.1', 1.18 + description='Generate Your Projects', 1.19 + author='Chromium Authors', 1.20 + author_email='chromium-dev@googlegroups.com', 1.21 + url='http://code.google.com/p/gyp', 1.22 + package_dir = {'': 'pylib'}, 1.23 + packages=['gyp', 'gyp.generator'], 1.24 + 1.25 + scripts = ['gyp'], 1.26 + cmdclass = {'install': install, 1.27 + 'install_lib': install_lib, 1.28 + 'install_scripts': install_scripts}, 1.29 +)