summaryrefslogtreecommitdiff
path: root/deps/gyp/test/defines/defines-env.gyp
blob: 1781546ae0871c1b503ef841cb7f6b6b0097be5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'variables': {
    'value%': '5',
  },
  'targets': [
    {
      'target_name': 'defines',
      'type': 'executable',
      'sources': [
        'defines.c',
      ],
      'defines': [
        'VALUE=<(value)',
      ],
    },
  ],
}