summaryrefslogtreecommitdiff
path: root/deps/gyp/test/relative/foo/b
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/relative/foo/b')
-rw-r--r--deps/gyp/test/relative/foo/b/b.cc9
-rw-r--r--deps/gyp/test/relative/foo/b/b.gyp9
2 files changed, 18 insertions, 0 deletions
diff --git a/deps/gyp/test/relative/foo/b/b.cc b/deps/gyp/test/relative/foo/b/b.cc
new file mode 100644
index 0000000000..011d59cebb
--- /dev/null
+++ b/deps/gyp/test/relative/foo/b/b.cc
@@ -0,0 +1,9 @@
+/*
+ * 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.
+ */
+
+int func2() {
+ return 0;
+}
diff --git a/deps/gyp/test/relative/foo/b/b.gyp b/deps/gyp/test/relative/foo/b/b.gyp
new file mode 100644
index 0000000000..0ebe4533d3
--- /dev/null
+++ b/deps/gyp/test/relative/foo/b/b.gyp
@@ -0,0 +1,9 @@
+{
+ 'targets': [
+ {
+ 'target_name': 'b',
+ 'type': 'static_library',
+ 'sources': ['b.cc'],
+ },
+ ],
+}