summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/identical-name/testlib/testlib.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/mac/identical-name/testlib/testlib.gyp')
-rw-r--r--deps/gyp/test/mac/identical-name/testlib/testlib.gyp14
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/gyp/test/mac/identical-name/testlib/testlib.gyp b/deps/gyp/test/mac/identical-name/testlib/testlib.gyp
new file mode 100644
index 0000000000..aa8b851004
--- /dev/null
+++ b/deps/gyp/test/mac/identical-name/testlib/testlib.gyp
@@ -0,0 +1,14 @@
+{
+ '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'],
+ }],
+}