diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle')
6 files changed, 61 insertions, 0 deletions
diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/Info.plist b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/Info.plist new file mode 100644 index 000000000..8cb142e9f --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/Info.plist @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIconFile</key> + <string></string> + <key>CFBundleIdentifier</key> + <string>com.google.${PRODUCT_NAME}</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>${PRODUCT_NAME}</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>ause</string> + <key>CFBundleVersion</key> + <string>1</string> + <key>LSMinimumSystemVersion</key> + <string>${MACOSX_DEPLOYMENT_TARGET}</string> + <key>NSMainNibFile</key> + <string>MainMenu</string> + <key>NSPrincipalClass</key> + <string>NSApplication</string> +</dict> +</plist> diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/app.order b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/app.order new file mode 100644 index 000000000..4eb9e89d3 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/app.order @@ -0,0 +1 @@ +_main diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/header.h b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/header.h new file mode 100644 index 000000000..7ed777512 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/header.h @@ -0,0 +1 @@ +int f(); diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/main.c b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/main.c new file mode 100644 index 000000000..237c8ce18 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/main.c @@ -0,0 +1 @@ +int main() {} diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/resource.sb b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/resource.sb new file mode 100644 index 000000000..731befc45 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/resource.sb @@ -0,0 +1 @@ +A text file. diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/test.gyp b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/test.gyp new file mode 100644 index 000000000..35ac674f6 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/mac-bundle/test.gyp @@ -0,0 +1,25 @@ +# Copyright (c) 2012 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +{ + 'targets': [ + { + 'target_name': 'test_app', + 'product_name': 'Test App Gyp', + 'type': 'executable', + 'mac_bundle': 1, + 'sources': [ + 'main.c', + ], + 'mac_bundle_resources': [ + 'resource.sb', + ], + 'xcode_settings': { + 'INFOPLIST_FILE': 'Info.plist', + 'ORDER_FILE': 'app.order', + 'GCC_PREFIX_HEADER': 'header.h', + 'GCC_PRECOMPILE_PREFIX_HEADER': 'YES', + }, + }, + ], +} |