link-objects.gyp 574 B

123456789101112131415161718192021222324
  1. # Copyright (c) 2009 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': 'link-objects',
  8. 'type': 'executable',
  9. 'actions': [
  10. {
  11. 'action_name': 'build extra object',
  12. 'inputs': ['extra.c'],
  13. 'outputs': ['extra.o'],
  14. 'action': ['gcc', '-o', 'extra.o', '-c', 'extra.c'],
  15. 'process_outputs_as_sources': 1,
  16. },
  17. ],
  18. 'sources': [
  19. 'base.c',
  20. ],
  21. },
  22. ],
  23. }