Sha256: dfd0a248bb0baa7f29120ac4cfec6502ecd7d276e4bd5cb9ccd87b210aba6de8
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
# 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': 'all', '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', ], }, ], }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tree-sitter-0.1.0 | ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test3.gyp |