summaryrefslogtreecommitdiff
path: root/deps/gtest/gtest.gyp
blob: c62b6be3f8c30929a7ccd5728e955af7425fd47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    'target_defaults': {
        'default_configuration': 'Release',
        'configurations': {
          'Debug': {},
          'Release': {}
        },
    },
    'targets': [{
        'target_name': 'gtest',
        'type': 'static_library',
        'sources': [
            'gtest-all.cc'
        ],
        'direct_dependent_settings': {
            'include_dirs': [
              '.',
            ],
        },
    }]
}