blob: 25a6eba94aae7d09d93d04f129e54c103255f088 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/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 os
8import sys
9
10# Make sure we're using the version of pylib in this repo, not one installed
11# elsewhere on the system.
12sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), 'pylib'))
13import gyp
14
15if __name__ == '__main__':
16 sys.exit(gyp.script_main())