dep.gyp 614 B

1234567891011121314151617181920212223
  1. # Copyright (c) 2013 Google Inc. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. # dep.gyp contains a target dep, on which all the targets in the project
  5. # depend. This means there's a self-dependency of dep on itself, which is
  6. # pruned by setting prune_self_dependency to 1.
  7. {
  8. 'includes': [
  9. 'common.gypi',
  10. ],
  11. 'targets': [
  12. {
  13. 'target_name': 'dep',
  14. 'type': 'none',
  15. 'variables': {
  16. # Without this GYP will report a cycle in dependency graph.
  17. 'prune_self_dependency': 1,
  18. },
  19. },
  20. ],
  21. }