1#!/usr/bin/env python
2
3# Copyright (c) 2009 Google Inc. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import sys
8
9# TODO(mark): sys.path manipulation is some temporary testing stuff.
10try:
11  import gyp
12except ImportError, e:
13  import os.path
14  sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), 'pylib'))
15  import gyp
16
17if __name__ == '__main__':
18  sys.exit(gyp.script_main())
19