niklase@google.com | 47bdc46 | 2011-05-30 11:42:35 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
andrew@webrtc.org | 336d52d | 2012-04-17 01:19:27 +0000 | [diff] [blame^] | 2 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | # |
| 4 | # Use of this source code is governed by a BSD-style license |
| 5 | # that can be found in the LICENSE file in the root of the source |
| 6 | # tree. An additional intellectual property rights grant can be found |
| 7 | # in the file PATENTS. All contributing project authors may |
| 8 | # be found in the AUTHORS file in the root of the source tree. |
niklase@google.com | 47bdc46 | 2011-05-30 11:42:35 +0000 | [diff] [blame] | 9 | |
| 10 | import sys |
| 11 | |
| 12 | supplement_gypi = """#!/usr/bin/env python |
| 13 | # This file is generated by %s. Not for check-in. |
| 14 | # Please see the WebRTC DEPS file for details. |
| 15 | { |
| 16 | 'variables': { |
| 17 | 'build_with_chromium': 0, |
niklase@google.com | 47bdc46 | 2011-05-30 11:42:35 +0000 | [diff] [blame] | 18 | } |
| 19 | } |
| 20 | """ |
| 21 | |
| 22 | def main(argv): |
| 23 | open(argv[1], 'w').write(supplement_gypi % argv[0]) |
| 24 | |
| 25 | if __name__ == '__main__': |
| 26 | sys.exit(main(sys.argv)) |