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_expansions', 9 'type': 'executable', 10 'sources': ['hello.cc'], 11 'msvs_settings': { 12 'VCLinkerTool': { 13 'OutputFile': '$(OutDir)\\$(ProjectName)_plus_something.exe', 14 }, 15 }, 16 }, 17 { 18 'target_name': 'test_with_product_name', 19 'product_name': 'prod_name', 20 'type': 'executable', 21 'sources': ['hello.cc'], 22 'msvs_settings': { 23 'VCLinkerTool': { 24 'OutputFile': '$(OutDir)\\$(ProjectName)_plus_something.exe', 25 }, 26 }, 27 }, 28 ] 29 } 30