summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.gyp
blob: 5da9cc9bd8bf7c15952c110b526401741620a4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (c) 2016 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.

{
 'targets': [
    {
      'target_name': 'win_driver_target_type',
      'type': 'windows_driver',
      'msvs_target_version': 'Windows7',
      'sources': [
        'win-driver-target-type.c',
        'win-driver-target-type.h',
        'win-driver-target-type.rc',
      ],
      'msvs_settings': {
        'VCLinkerTool': {
          'AdditionalDependencies': [
            'wdmsec.lib',
            'ntoskrnl.lib',
            'hal.lib',
            'wmilib.lib',
            'bufferoverflowfastfailk.lib',
          ],
        },
        'VCCLCompilerTool': {
          'WarnAsError': 'false',
        },
      },
    },
  ]
}