defines-env.gyp 399 B

12345678910111213141516171819202122
  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. 'variables': {
  6. 'value%': '5',
  7. },
  8. 'targets': [
  9. {
  10. 'target_name': 'defines',
  11. 'type': 'executable',
  12. 'sources': [
  13. 'defines.c',
  14. ],
  15. 'defines': [
  16. 'VALUE=<(value)',
  17. ],
  18. },
  19. ],
  20. }