1 # Copyright (c) 2013 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_targetname', 9 'type': 'executable', 10 'sources': ['hello.cc'], 11 'msvs_settings': { 12 'VCLinkerTool': { 13 'OutputFile': '$(TargetDir)\\$(TargetName)_plus_something1.exe', 14 }, 15 }, 16 }, 17 { 18 'target_name': 'test_targetname_with_prefix', 19 'product_prefix': 'prod_prefix', 20 'type': 'executable', 21 'sources': ['hello.cc'], 22 'msvs_settings': { 23 'VCLinkerTool': { 24 'OutputFile': '$(TargetDir)\\$(TargetName)_plus_something2.exe', 25 }, 26 }, 27 }, 28 { 29 'target_name': 'test_targetname_with_prodname', 30 'product_name': 'prod_name', 31 'type': 'executable', 32 'sources': ['hello.cc'], 33 'msvs_settings': { 34 'VCLinkerTool': { 35 'OutputFile': '$(TargetDir)\\$(TargetName)_plus_something3.exe', 36 }, 37 }, 38 }, 39 { 40 'target_name': 'test_targetname_with_prodname_with_prefix', 41 'product_name': 'prod_name', 42 'product_prefix': 'prod_prefix', 43 'type': 'executable', 44 'sources': ['hello.cc'], 45 'msvs_settings': { 46 'VCLinkerTool': { 47 'OutputFile': '$(TargetDir)\\$(TargetName)_plus_something4.exe', 48 }, 49 }, 50 }, 51 ] 52 } 53