summaryrefslogtreecommitdiff
path: root/deps/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp
blob: 2c3266322d4f7690361863d510d4a0e4c4ed4948 (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) 2013 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style licence that can be
# found in the LICENSE file.

{
  'make_global_settings': [
    ['CC', '/bin/echo MY_CC'],
    ['CXX', '/bin/echo MY_CXX'],
    ['NM', '<(python) <(workdir)/my_nm.py'],
    ['READELF', '<(python) <(workdir)/my_readelf.py'],
  ],
  'targets': [
    {
      'target_name': 'test',
      'type': 'shared_library',
      'sources': [
        'foo.c',
        'bar.cc',
      ],
    },
  ],
}