git-svn-id: http://webrtc.googlecode.com/svn/trunk@8 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
23
tools/create_supplement_gypi.py
Normal file
23
tools/create_supplement_gypi.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python
|
||||
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
import sys
|
||||
|
||||
supplement_gypi = """#!/usr/bin/env python
|
||||
# This file is generated by %s. Not for check-in.
|
||||
# Please see the WebRTC DEPS file for details.
|
||||
{
|
||||
'variables': {
|
||||
'build_with_chromium': 0,
|
||||
'inside_chromium_build': 0,
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
def main(argv):
|
||||
open(argv[1], 'w').write(supplement_gypi % argv[0])
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main(sys.argv))
|
Reference in New Issue
Block a user