test3.gyp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Copyright (c) 2014 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. {
  5. 'targets': [
  6. {
  7. 'target_name': 'all',
  8. 'type': 'none',
  9. 'dependencies': [
  10. 'a',
  11. 'b',
  12. ],
  13. },
  14. {
  15. 'target_name': 'a',
  16. 'type': 'executable',
  17. 'sources': [
  18. 'a.c',
  19. ],
  20. 'dependencies': [
  21. 'c',
  22. 'd',
  23. ],
  24. },
  25. {
  26. 'target_name': 'b',
  27. 'type': 'executable',
  28. 'sources': [
  29. 'b.c',
  30. ],
  31. 'dependencies': [
  32. 'd',
  33. 'e',
  34. ],
  35. },
  36. {
  37. 'target_name': 'c',
  38. 'type': 'executable',
  39. 'sources': [
  40. 'c.c',
  41. ],
  42. },
  43. {
  44. 'target_name': 'd',
  45. 'type': 'none',
  46. 'sources': [
  47. 'd.c',
  48. ],
  49. 'dependencies': [
  50. 'f',
  51. 'g',
  52. ],
  53. },
  54. {
  55. 'target_name': 'e',
  56. 'type': 'executable',
  57. 'sources': [
  58. 'e.c',
  59. ],
  60. },
  61. {
  62. 'target_name': 'f',
  63. 'type': 'static_library',
  64. 'sources': [
  65. 'f.c',
  66. ],
  67. },
  68. {
  69. 'target_name': 'g',
  70. 'type': 'executable',
  71. 'sources': [
  72. 'g.c',
  73. ],
  74. },
  75. ],
  76. }