From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../test/generator-output/mac-bundle/Info.plist | 32 ++++++++++++++++++++++ .../gyp/test/generator-output/mac-bundle/app.order | 1 + .../gyp/test/generator-output/mac-bundle/header.h | 1 + .../gyp/test/generator-output/mac-bundle/main.c | 1 + .../test/generator-output/mac-bundle/resource.sb | 1 + .../gyp/test/generator-output/mac-bundle/test.gyp | 25 +++++++++++++++++ 6 files changed, 61 insertions(+) create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/Info.plist create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/app.order create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/header.h create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/main.c create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/resource.sb create mode 100644 third_party/python/gyp/test/generator-output/mac-bundle/test.gyp (limited to 'third_party/python/gyp/test/generator-output/mac-bundle') diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/Info.plist b/third_party/python/gyp/test/generator-output/mac-bundle/Info.plist new file mode 100644 index 0000000000..8cb142e9f5 --- /dev/null +++ b/third_party/python/gyp/test/generator-output/mac-bundle/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.google.${PRODUCT_NAME} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ause + CFBundleVersion + 1 + LSMinimumSystemVersion + ${MACOSX_DEPLOYMENT_TARGET} + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/app.order b/third_party/python/gyp/test/generator-output/mac-bundle/app.order new file mode 100644 index 0000000000..4eb9e89d39 --- /dev/null +++ b/third_party/python/gyp/test/generator-output/mac-bundle/app.order @@ -0,0 +1 @@ +_main diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/header.h b/third_party/python/gyp/test/generator-output/mac-bundle/header.h new file mode 100644 index 0000000000..7ed7775122 --- /dev/null +++ b/third_party/python/gyp/test/generator-output/mac-bundle/header.h @@ -0,0 +1 @@ +int f(); diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/main.c b/third_party/python/gyp/test/generator-output/mac-bundle/main.c new file mode 100644 index 0000000000..237c8ce181 --- /dev/null +++ b/third_party/python/gyp/test/generator-output/mac-bundle/main.c @@ -0,0 +1 @@ +int main() {} diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/resource.sb b/third_party/python/gyp/test/generator-output/mac-bundle/resource.sb new file mode 100644 index 0000000000..731befc457 --- /dev/null +++ b/third_party/python/gyp/test/generator-output/mac-bundle/resource.sb @@ -0,0 +1 @@ +A text file. diff --git a/third_party/python/gyp/test/generator-output/mac-bundle/test.gyp b/third_party/python/gyp/test/generator-output/mac-bundle/test.gyp new file mode 100644 index 0000000000..35ac674f6d --- /dev/null +++ b/third_party/python/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', + }, + }, + ], +} -- cgit v1.2.3