2011-04-14 12:38:55 +04:00
|
|
|
#!/usr/bin/env python
|
2012-05-14 22:39:27 +04:00
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
2009-09-16 23:44:02 +04:00
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2015-08-12 00:01:19 +03:00
|
|
|
# Simple launcher script for gyp_chromium.py.
|
|
|
|
# TODO(sbc): This should probably be shell script but for historical
|
|
|
|
# reasons (all the python code used to live in this script without a
|
|
|
|
# .py extension, and was often run as 'python gyp_chromium') it is
|
|
|
|
# currently still python.
|
2014-02-05 02:11:57 +04:00
|
|
|
|
2015-08-12 00:01:19 +03:00
|
|
|
execfile(__file__ + '.py')
|