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_output_exe', 9 'type': 'executable', 10 'msvs_settings': { 11 'VCLinkerTool': { 12 'OutputFile': '$(OutDir)\\blorp.exe' 13 }, 14 }, 15 'sources': ['hello.cc'], 16 }, 17 { 18 'target_name': 'test_output_exe2', 19 'type': 'executable', 20 'msvs_settings': { 21 'VCLinkerTool': { 22 'OutputFile': '$(OutDir)\\subdir\\blorp.exe' 23 }, 24 }, 25 'sources': ['hello.cc'], 26 }, 27 { 28 'target_name': 'test_output_dll', 29 'type': 'shared_library', 30 'msvs_settings': { 31 'VCLinkerTool': { 32 'OutputFile': '$(OutDir)\\blorp.dll' 33 }, 34 }, 35 'sources': ['hello.cc'], 36 }, 37 { 38 'target_name': 'test_output_lib', 39 'type': 'static_library', 40 'msvs_settings': { 41 'VCLibrarianTool': { 42 'OutputFile': '$(OutDir)\\blorp.lib' 43 }, 44 }, 45 'sources': ['hello.cc'], 46 }, 47 { 48 'target_name': 'test_output_lib2', 49 'type': 'static_library', 50 'msvs_settings': { 51 'VCLibrarianTool': { 52 'OutputFile': '$(OutDir)\\subdir\\blorp.lib' 53 }, 54 }, 55 'sources': ['hello.cc'], 56 }, 57 ] 58 } 59