1 # Copyright (c) 2012 Google Inc. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 { 6 'targets': [ 7 { 8 'target_name': 'test_nxcompat_default', 9 'type': 'executable', 10 'msvs_settings': { 11 }, 12 'sources': ['hello.cc'], 13 }, 14 { 15 'target_name': 'test_nxcompat_no', 16 'type': 'executable', 17 'msvs_settings': { 18 'VCLinkerTool': { 19 'DataExecutionPrevention': '1', 20 } 21 }, 22 'sources': ['hello.cc'], 23 }, 24 { 25 'target_name': 'test_nxcompat_yes', 26 'type': 'executable', 27 'msvs_settings': { 28 'VCLinkerTool': { 29 'DataExecutionPrevention': '2', 30 }, 31 }, 32 'sources': ['hello.cc'], 33 }, 34 ] 35 } 36