blob: 7f996e7472c72fefd7f962856ca6d1d269029594 [file] [log] [blame]
niklase@google.com47bdc462011-05-30 11:42:35 +00001#!/usr/bin/env python
andrew@webrtc.org336d52d2012-04-17 01:19:27 +00002# 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.com47bdc462011-05-30 11:42:35 +00009
10import sys
11
12supplement_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.com47bdc462011-05-30 11:42:35 +000018 }
19}
20"""
21
22def main(argv):
23 open(argv[1], 'w').write(supplement_gypi % argv[0])
24
25if __name__ == '__main__':
26 sys.exit(main(sys.argv))