OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # TODO(brettw) support "iphoneos" in addition to the simulator. May also need | |
6 # support for common.gypi's "ios_sdk" variable (seems to be a version number) | |
7 # and ios_sdk_path (argument that overrides the one returned below). | |
8 ios_sdk_result = | |
9 exec_script("ios_sdk.py", [ "iphonesimulator" ], "list lines") | |
10 ios_sdk_path = ios_sdk_result[0] | |
OLD | NEW |