summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/swift-library
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/mac/swift-library')
-rw-r--r--deps/gyp/test/mac/swift-library/Info.plist28
-rw-r--r--deps/gyp/test/mac/swift-library/file.swift9
-rw-r--r--deps/gyp/test/mac/swift-library/test.gyp21
3 files changed, 0 insertions, 58 deletions
diff --git a/deps/gyp/test/mac/swift-library/Info.plist b/deps/gyp/test/mac/swift-library/Info.plist
deleted file mode 100644
index 804990ca5e..0000000000
--- a/deps/gyp/test/mac/swift-library/Info.plist
+++ /dev/null
@@ -1,28 +0,0 @@
-<?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.yourcompany.${PRODUCT_NAME:identifier}</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>${PRODUCT_NAME}</string>
- <key>CFBundlePackageType</key>
- <string>FMWK</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleVersion</key>
- <string>1</string>
- <key>NSPrincipalClass</key>
- <string></string>
-</dict>
-</plist>
diff --git a/deps/gyp/test/mac/swift-library/file.swift b/deps/gyp/test/mac/swift-library/file.swift
deleted file mode 100644
index 88db7da5c6..0000000000
--- a/deps/gyp/test/mac/swift-library/file.swift
+++ /dev/null
@@ -1,9 +0,0 @@
-import Foundation
-
-public class GypSwiftTest {
- let myProperty = false
-
- init() {
- self.myProperty = true
- }
-} \ No newline at end of file
diff --git a/deps/gyp/test/mac/swift-library/test.gyp b/deps/gyp/test/mac/swift-library/test.gyp
deleted file mode 100644
index 373a677cbd..0000000000
--- a/deps/gyp/test/mac/swift-library/test.gyp
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (c) 2011 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': 'SwiftFramework',
- 'product_name': 'SwiftFramework',
- 'type': 'shared_library',
- 'mac_bundle': 1,
- 'xcode_settings': {
- 'INFOPLIST_FILE': 'Info.plist',
- 'CODE_SIGNING_REQUIRED': 'NO',
- 'CONFIGURATION_BUILD_DIR':'build/Default',
- },
- 'sources': [
- 'file.swift',
- ],
- },
- ],
-}