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/mac/missing-cfbundlesignature/Info.plist | 10 +++++++ .../mac/missing-cfbundlesignature/Other-Info.plist | 12 ++++++++ .../mac/missing-cfbundlesignature/Third-Info.plist | 12 ++++++++ .../gyp/test/mac/missing-cfbundlesignature/file.c | 1 + .../test/mac/missing-cfbundlesignature/test.gyp | 34 ++++++++++++++++++++++ 5 files changed, 69 insertions(+) create mode 100644 third_party/python/gyp/test/mac/missing-cfbundlesignature/Info.plist create mode 100644 third_party/python/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist create mode 100644 third_party/python/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist create mode 100644 third_party/python/gyp/test/mac/missing-cfbundlesignature/file.c create mode 100644 third_party/python/gyp/test/mac/missing-cfbundlesignature/test.gyp (limited to 'third_party/python/gyp/test/mac/missing-cfbundlesignature') diff --git a/third_party/python/gyp/test/mac/missing-cfbundlesignature/Info.plist b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Info.plist new file mode 100644 index 0000000000..0c31674884 --- /dev/null +++ b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Info.plist @@ -0,0 +1,10 @@ + + + + + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundlePackageType + APPL + + diff --git a/third_party/python/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist new file mode 100644 index 0000000000..47095281c8 --- /dev/null +++ b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist @@ -0,0 +1,12 @@ + + + + + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundlePackageType + APPL + CFBundleSignature + F + + diff --git a/third_party/python/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist new file mode 100644 index 0000000000..5b61fe2664 --- /dev/null +++ b/third_party/python/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist @@ -0,0 +1,12 @@ + + + + + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundlePackageType + APPL + CFBundleSignature + some really long string + + diff --git a/third_party/python/gyp/test/mac/missing-cfbundlesignature/file.c b/third_party/python/gyp/test/mac/missing-cfbundlesignature/file.c new file mode 100644 index 0000000000..237c8ce181 --- /dev/null +++ b/third_party/python/gyp/test/mac/missing-cfbundlesignature/file.c @@ -0,0 +1 @@ +int main() {} diff --git a/third_party/python/gyp/test/mac/missing-cfbundlesignature/test.gyp b/third_party/python/gyp/test/mac/missing-cfbundlesignature/test.gyp new file mode 100644 index 0000000000..b50cc2791a --- /dev/null +++ b/third_party/python/gyp/test/mac/missing-cfbundlesignature/test.gyp @@ -0,0 +1,34 @@ +# 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': 'mytarget', + 'type': 'executable', + 'mac_bundle': 1, + 'sources': [ 'file.c', ], + 'xcode_settings': { + 'INFOPLIST_FILE': 'Info.plist', + }, + }, + { + 'target_name': 'myothertarget', + 'type': 'executable', + 'mac_bundle': 1, + 'sources': [ 'file.c', ], + 'xcode_settings': { + 'INFOPLIST_FILE': 'Other-Info.plist', + }, + }, + { + 'target_name': 'thirdtarget', + 'type': 'executable', + 'mac_bundle': 1, + 'sources': [ 'file.c', ], + 'xcode_settings': { + 'INFOPLIST_FILE': 'Third-Info.plist', + }, + }, + ], +} -- cgit v1.2.3