summaryrefslogtreecommitdiff
path: root/deps/gyp/test/same-gyp-name/src/subdir1
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/same-gyp-name/src/subdir1')
-rw-r--r--deps/gyp/test/same-gyp-name/src/subdir1/executable.gyp15
-rw-r--r--deps/gyp/test/same-gyp-name/src/subdir1/main1.cc6
2 files changed, 0 insertions, 21 deletions
diff --git a/deps/gyp/test/same-gyp-name/src/subdir1/executable.gyp b/deps/gyp/test/same-gyp-name/src/subdir1/executable.gyp
deleted file mode 100644
index 82483b4c69..0000000000
--- a/deps/gyp/test/same-gyp-name/src/subdir1/executable.gyp
+++ /dev/null
@@ -1,15 +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': 'program1',
- 'type': 'executable',
- 'sources': [
- 'main1.cc',
- ],
- },
- ],
-}
diff --git a/deps/gyp/test/same-gyp-name/src/subdir1/main1.cc b/deps/gyp/test/same-gyp-name/src/subdir1/main1.cc
deleted file mode 100644
index 3645558324..0000000000
--- a/deps/gyp/test/same-gyp-name/src/subdir1/main1.cc
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <stdio.h>
-
-int main() {
- printf("Hello from main1.cc\n");
- return 0;
-}