| # Copyright 2019 The ANGLE 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. |
| # This special action is used to cleanup old files from the build directory. |
| # Otherwise ANGLE will pick up the old file(s), causing build or runtime errors. |
| print("Usage: " + sys.argv[0] + " <stamp_file> <remove_patterns>") |
| for i in range(2, len(sys.argv)): |
| remove_pattern = sys.argv[i] |
| remove_files = glob.glob(remove_pattern) |
| # touch a dummy file to keep a timestamp |
| with open(stamp_file, "w") as f: |