aboutsummaryrefslogtreecommitdiff
path: root/files/tools_libyuv/get_landmines.py
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-21 23:41:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-21 23:41:35 +0000
commit4d6f34f32c7828ab935beb54cdca08bd7bbd39c3 (patch)
tree7aa355fd0b89ec0b2611e17ee84a14c6fa449e22 /files/tools_libyuv/get_landmines.py
parent7447ad8db319c34111a3d43b64b9485ac1a8115d (diff)
parent50ea3b267729413aa561eaea5aac7e6fcd565101 (diff)
downloadlibyuv-androidx-fragment-release.tar.gz
Merge "Snap for 11610999 from 488a2af021e3e7473f083a9435b1472c0d411f3d to androidx-fragment-release" into androidx-fragment-releaseandroidx-fragment-release
Diffstat (limited to 'files/tools_libyuv/get_landmines.py')
-rwxr-xr-xfiles/tools_libyuv/get_landmines.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/files/tools_libyuv/get_landmines.py b/files/tools_libyuv/get_landmines.py
deleted file mode 100755
index 8b33483e..00000000
--- a/files/tools_libyuv/get_landmines.py
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env python3
-
-# Copyright 2016 The LibYuv Project Authors. All rights reserved.
-#
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file in the root of the source
-# tree. An additional intellectual property rights grant can be found
-# in the file PATENTS. All contributing project authors may
-# be found in the AUTHORS file in the root of the source tree.
-
-"""
-This file emits the list of reasons why a particular build needs to be clobbered
-(or a list of 'landmines').
-"""
-
-import sys
-
-
-def print_landmines():
- """
- ALL LANDMINES ARE EMITTED FROM HERE.
- """
- # DO NOT add landmines as part of a regular CL. Landmines are a last-effort
- # bandaid fix if a CL that got landed has a build dependency bug and all bots
- # need to be cleaned up. If you're writing a new CL that causes build
- # dependency problems, fix the dependency problems instead of adding a
- # landmine.
- # See the Chromium version in src/build/get_landmines.py for usage examples.
- print('Clobber to remove GYP artifacts after switching bots to GN.')
- print('Another try to remove GYP artifacts after switching bots to GN.')
-
-
-def main():
- print_landmines()
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main())