defines.gyp 566 B

1234567891011121314151617181920212223242526
  1. # Copyright (c) 2012 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': 'test_target',
  8. 'type': 'none',
  9. 'actions': [
  10. {
  11. 'action_name': 'test_action',
  12. 'inputs': [],
  13. 'outputs': [ 'action.txt' ],
  14. 'action': [
  15. 'python',
  16. 'echo.py',
  17. '<(key)',
  18. '<(_outputs)',
  19. ],
  20. 'msvs_cygwin_shell': 0,
  21. }
  22. ],
  23. },
  24. ],
  25. }