blob: 495b3d1dba1e8ee43d9042d0b9daf7ad5895865e [file] [log] [blame]
Henrik Kjellander27576e02015-10-15 14:24:09 +02001#!/usr/bin/env python
2# Copyright (c) 2015 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.
9
10"""
11This file emits the list of reasons why a particular build needs to be clobbered
12(or a list of 'landmines').
13"""
14
15import os
16import sys
17
18script_dir = os.path.dirname(os.path.realpath(__file__))
19checkout_root = os.path.abspath(os.path.join(script_dir, os.pardir, os.pardir))
20sys.path.insert(0, os.path.join(checkout_root, 'build'))
21import landmine_utils
22
23
Henrik Kjellander27576e02015-10-15 14:24:09 +020024distributor = landmine_utils.distributor
25gyp_defines = landmine_utils.gyp_defines
26gyp_msvs_version = landmine_utils.gyp_msvs_version
27platform = landmine_utils.platform
28
29
30def print_landmines():
31 """
32 ALL LANDMINES ARE EMITTED FROM HERE.
33 """
34 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort
35 # bandaid fix if a CL that got landed has a build dependency bug and all bots
36 # need to be cleaned up. If you're writing a new CL that causes build
37 # dependency problems, fix the dependency problems instead of adding a
38 # landmine.
39 # See the Chromium version in src/build/get_landmines.py for usage examples.
Henrik Kjellander5ddee022015-10-27 11:59:52 +010040 print 'Clobber to remove out/{Debug,Release}/args.gn (webrtc:5070)'
Henrik Kjellander27576e02015-10-15 14:24:09 +020041
42
43def main():
44 print_landmines()
45 return 0
46
47
48if __name__ == '__main__':
49 sys.exit(main())