BUILD.gn |
|
630 |
codesign.py |
Returns the location of the installed mobile provisioning profiles.
Returns:
The path to the directory containing the installed mobile provisioning
profiles as a string.
|
24589 |
compile_ib_files.py |
|
1607 |
create_signed_bundle.gni |
|
14244 |
find_signing_identity.py |
Redact value past the N-th character. |
2645 |
mobile_bundle_data.gni |
|
8577 |
mobile_config.gni |
|
5809 |
OWNERS |
|
26 |
sdk_info.py |
Splits the Xcode version to 3 values.
>>> list(SplitVersion('8.2.1.1'))
['8', '2', '1']
>>> list(SplitVersion('9.3'))
['9', '3', '0']
>>> list(SplitVersion('10.0'))
['10', '0', '0']
|
5868 |
swift_source_set.gni |
|
2366 |
symbols.gni |
|
1425 |
write_framework_hmap.py |
Generates a header map based on |filelist|.
Per Mark Mentovai:
A header map is structured essentially as a hash table, keyed by names used
in #includes, and providing pathnames to the actual files.
The implementation below and the comment above comes from inspecting:
http://www.opensource.apple.com/source/distcc/distcc-2503/distcc_dist/include_server/headermap.py?txt
while also looking at the implementation in clang in:
https://llvm.org/svn/llvm-project/cfe/trunk/lib/Lex/HeaderMap.cpp
|
3204 |
write_framework_modulemap.py |
\
framework module %(framework_name)s {
umbrella header "%(framework_name)s.h"
export *
module * { export * }
}
|
705 |