summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/win/compiler-flags/spectre-mitigation.gyp
blob: dad9cbd2c9b2781dbf4f0423fd1b88863f2d1f6e (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
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) 2023 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': 'test_sm_notset',
      'product_name': 'test_sm_notset',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'SpectreMitigation': 'false'
      },
      'sources': ['hello.cc'],
    },
    {
      'target_name': 'test_sm_spectre',
      'product_name': 'test_sm_spectre',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'SpectreMitigation': 'Spectre'
      },
      'sources': ['hello.cc'],
    },
    {
      'target_name': 'test_sm_spectre_load',
      'product_name': 'test_sm_spectre_load',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'SpectreMitigation': 'SpectreLoad'
      },
      'sources': ['hello.cc'],
    },
    {
      'target_name': 'test_sm_spectre_load_cf',
      'product_name': 'test_sm_spectre_load_cf',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'SpectreMitigation': 'SpectreLoadCF'
      },
      'sources': ['hello.cc'],
    }
  ]
}