summaryrefslogtreecommitdiff
path: root/deps/gyp/test/multiple-targets/src
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/multiple-targets/src')
-rw-r--r--deps/gyp/test/multiple-targets/src/common.c7
-rw-r--r--deps/gyp/test/multiple-targets/src/multiple.gyp24
-rw-r--r--deps/gyp/test/multiple-targets/src/prog1.c10
-rw-r--r--deps/gyp/test/multiple-targets/src/prog2.c10
4 files changed, 0 insertions, 51 deletions
diff --git a/deps/gyp/test/multiple-targets/src/common.c b/deps/gyp/test/multiple-targets/src/common.c
deleted file mode 100644
index f1df7c1431..0000000000
--- a/deps/gyp/test/multiple-targets/src/common.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdio.h>
-
-void common(void)
-{
- printf("hello from common.c\n");
- return;
-}
diff --git a/deps/gyp/test/multiple-targets/src/multiple.gyp b/deps/gyp/test/multiple-targets/src/multiple.gyp
deleted file mode 100644
index 3db4ea30cd..0000000000
--- a/deps/gyp/test/multiple-targets/src/multiple.gyp
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright (c) 2009 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': 'prog1',
- 'type': 'executable',
- 'sources': [
- 'prog1.c',
- 'common.c',
- ],
- },
- {
- 'target_name': 'prog2',
- 'type': 'executable',
- 'sources': [
- 'prog2.c',
- 'common.c',
- ],
- },
- ],
-}
diff --git a/deps/gyp/test/multiple-targets/src/prog1.c b/deps/gyp/test/multiple-targets/src/prog1.c
deleted file mode 100644
index fbf8d4cd7c..0000000000
--- a/deps/gyp/test/multiple-targets/src/prog1.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-
-extern void common(void);
-
-int main(void)
-{
- printf("hello from prog1.c\n");
- common();
- return 0;
-}
diff --git a/deps/gyp/test/multiple-targets/src/prog2.c b/deps/gyp/test/multiple-targets/src/prog2.c
deleted file mode 100644
index a94b5c155e..0000000000
--- a/deps/gyp/test/multiple-targets/src/prog2.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-
-extern void common(void);
-
-int main(void)
-{
- printf("hello from prog2.c\n");
- common();
- return 0;
-}