blob: f5a08e6192675cba47ea14f549b2edb7b3b29707 [file] [log] [blame]
niklase@google.com47bdc462011-05-30 11:42:35 +00001#!/usr/bin/env python
2# Copyright (c) 2011 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import sys
7
8supplement_gypi = """#!/usr/bin/env python
9# This file is generated by %s. Not for check-in.
10# Please see the WebRTC DEPS file for details.
11{
12 'variables': {
13 'build_with_chromium': 0,
14 'inside_chromium_build': 0,
15 }
16}
17"""
18
19def main(argv):
20 open(argv[1], 'w').write(supplement_gypi % argv[0])
21
22if __name__ == '__main__':
23 sys.exit(main(sys.argv))