summaryrefslogtreecommitdiff
path: root/deps/gyp/test/analyzer/test3.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/analyzer/test3.gyp')
-rw-r--r--deps/gyp/test/analyzer/test3.gyp77
1 files changed, 0 insertions, 77 deletions
diff --git a/deps/gyp/test/analyzer/test3.gyp b/deps/gyp/test/analyzer/test3.gyp
deleted file mode 100644
index e52f6bc7d3..0000000000
--- a/deps/gyp/test/analyzer/test3.gyp
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright (c) 2014 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': 'allx',
- 'type': 'none',
- 'dependencies': [
- 'a',
- 'b',
- ],
- },
- {
- 'target_name': 'a',
- 'type': 'executable',
- 'sources': [
- 'a.c',
- ],
- 'dependencies': [
- 'c',
- 'd',
- ],
- },
- {
- 'target_name': 'b',
- 'type': 'executable',
- 'sources': [
- 'b.c',
- ],
- 'dependencies': [
- 'd',
- 'e',
- ],
- },
- {
- 'target_name': 'c',
- 'type': 'executable',
- 'sources': [
- 'c.c',
- ],
- },
- {
- 'target_name': 'd',
- 'type': 'none',
- 'sources': [
- 'd.c',
- ],
- 'dependencies': [
- 'f',
- 'g',
- ],
- },
- {
- 'target_name': 'e',
- 'type': 'executable',
- 'sources': [
- 'e.c',
- ],
- },
- {
- 'target_name': 'f',
- 'type': 'static_library',
- 'sources': [
- 'f.c',
- ],
- },
- {
- 'target_name': 'g',
- 'type': 'executable',
- 'sources': [
- 'g.c',
- ],
- },
- ],
-}