summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/identical-name
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/mac/identical-name')
-rw-r--r--deps/gyp/test/mac/identical-name/proxy/proxy.cc2
-rw-r--r--deps/gyp/test/mac/identical-name/proxy/proxy.gyp9
-rw-r--r--deps/gyp/test/mac/identical-name/proxy/testlib/testlib.cc2
-rw-r--r--deps/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp8
-rw-r--r--deps/gyp/test/mac/identical-name/test-should-fail.gyp10
-rw-r--r--deps/gyp/test/mac/identical-name/test.gyp11
-rw-r--r--deps/gyp/test/mac/identical-name/test.gypi7
-rw-r--r--deps/gyp/test/mac/identical-name/testlib/main.cc3
-rw-r--r--deps/gyp/test/mac/identical-name/testlib/testlib.gyp14
-rw-r--r--deps/gyp/test/mac/identical-name/testlib/void.cc2
10 files changed, 0 insertions, 68 deletions
diff --git a/deps/gyp/test/mac/identical-name/proxy/proxy.cc b/deps/gyp/test/mac/identical-name/proxy/proxy.cc
deleted file mode 100644
index 8e1782da63..0000000000
--- a/deps/gyp/test/mac/identical-name/proxy/proxy.cc
+++ /dev/null
@@ -1,2 +0,0 @@
-// Empty file
-
diff --git a/deps/gyp/test/mac/identical-name/proxy/proxy.gyp b/deps/gyp/test/mac/identical-name/proxy/proxy.gyp
deleted file mode 100644
index 38f44af1b5..0000000000
--- a/deps/gyp/test/mac/identical-name/proxy/proxy.gyp
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- 'includes': ['../test.gypi'],
- 'targets': [{
- 'target_name': 'testlib',
- 'type': 'none',
- 'dependencies': ['testlib/testlib.gyp:testlib'],
- 'sources': ['proxy.cc'],
- }],
-}
diff --git a/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.cc b/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.cc
deleted file mode 100644
index 8e1782da63..0000000000
--- a/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.cc
+++ /dev/null
@@ -1,2 +0,0 @@
-// Empty file
-
diff --git a/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp b/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp
deleted file mode 100644
index ed1c62e982..0000000000
--- a/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- 'includes': ['../../test.gypi'],
- 'targets': [{
- 'target_name': 'testlib',
- 'type': 'static_library',
- 'sources': ['testlib.cc'],
- }],
-}
diff --git a/deps/gyp/test/mac/identical-name/test-should-fail.gyp b/deps/gyp/test/mac/identical-name/test-should-fail.gyp
deleted file mode 100644
index 72bfc7af0f..0000000000
--- a/deps/gyp/test/mac/identical-name/test-should-fail.gyp
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- 'targets': [{
- 'target_name': 'test',
- 'type': 'executable',
- 'dependencies': [
- 'testlib/testlib.gyp:proxy',
- 'proxy/proxy.gyp:testlib',
- ],
- }],
-}
diff --git a/deps/gyp/test/mac/identical-name/test.gyp b/deps/gyp/test/mac/identical-name/test.gyp
deleted file mode 100644
index 717220e866..0000000000
--- a/deps/gyp/test/mac/identical-name/test.gyp
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- 'includes': ['test.gypi'],
- 'targets': [{
- 'target_name': 'test',
- 'type': 'executable',
- 'dependencies': [
- 'testlib/testlib.gyp:proxy',
- 'proxy/proxy.gyp:testlib',
- ],
- }],
-} \ No newline at end of file
diff --git a/deps/gyp/test/mac/identical-name/test.gypi b/deps/gyp/test/mac/identical-name/test.gypi
deleted file mode 100644
index 61b7c2badf..0000000000
--- a/deps/gyp/test/mac/identical-name/test.gypi
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- 'target_defaults': {
- 'xcode_settings': {
- 'SYMROOT': '<(DEPTH)/$SRCROOT/',
- },
- },
-}
diff --git a/deps/gyp/test/mac/identical-name/testlib/main.cc b/deps/gyp/test/mac/identical-name/testlib/main.cc
deleted file mode 100644
index 5c2fa9bb6a..0000000000
--- a/deps/gyp/test/mac/identical-name/testlib/main.cc
+++ /dev/null
@@ -1,3 +0,0 @@
-int main(int argc, char **argv) {
- return 0;
-}
diff --git a/deps/gyp/test/mac/identical-name/testlib/testlib.gyp b/deps/gyp/test/mac/identical-name/testlib/testlib.gyp
deleted file mode 100644
index aa8b851004..0000000000
--- a/deps/gyp/test/mac/identical-name/testlib/testlib.gyp
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- 'includes': ['../test.gypi'],
- 'targets': [{
- 'target_name': 'proxy',
- 'type': 'static_library',
- 'sources': ['void.cc'],
- 'dependencies': ['testlib'],
- 'export_dependent_settings': ['testlib'],
- }, {
- 'target_name': 'testlib',
- 'type': 'static_library',
- 'sources': ['main.cc'],
- }],
-}
diff --git a/deps/gyp/test/mac/identical-name/testlib/void.cc b/deps/gyp/test/mac/identical-name/testlib/void.cc
deleted file mode 100644
index 8e1782da63..0000000000
--- a/deps/gyp/test/mac/identical-name/testlib/void.cc
+++ /dev/null
@@ -1,2 +0,0 @@
-// Empty file
-