55f81f2210
- Add `.style.yapf` with configuration to use Google style. - Run `yapf` on all `.py` files in this repo. - Manually fix one trailing space in a doc string. - Run `git cl format runtime` to satisfy presubmit. Change-Id: I7e6bd11e91f07926b9188362599af398551eed79 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111600 Commit-Queue: Nate Bosch <nbosch@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
21 lines
598 B
Python
21 lines
598 B
Python
# Copyright (c) 2013 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.
|
|
|
|
# This file takes two arguments, the relative location of the shell script that
|
|
# does the checking, and the name of the sysroot.
|
|
|
|
# TODO(brettw) the build/linux/sysroot_ld_path.sh script should be rewritten in
|
|
# Python in this file.
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
if len(sys.argv) != 3:
|
|
print "Need two arguments"
|
|
sys.exit(1)
|
|
|
|
result = subprocess.check_output([sys.argv[1], sys.argv[2]]).strip()
|
|
|
|
print '"' + result + '"'
|