summaryrefslogtreecommitdiff
path: root/tools/gyp/test/defines/defines-env.gyp
blob: 5d3c3b1e4c2d6d0061324fbcbdd3920931e27e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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)',
      ],
    },
  ],
}