| Index: build/config/mac/xcrun.py
|
| diff --git a/build/config/mac/xcrun.py b/build/config/mac/xcrun.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e8bb416f937e3b01c40989f6975243b70db77a6f
|
| --- /dev/null
|
| +++ b/build/config/mac/xcrun.py
|
| @@ -0,0 +1,10 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import os
|
| +import subprocess
|
| +import sys
|
| +
|
| +if __name__ == '__main__':
|
| + sys.exit(subprocess.check_call(['xcrun'] + sys.argv[1:]))
|
|
|