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_deffile_dll_ok', 9 'type': 'shared_library', 10 'sources': [ 11 'deffile.cc', 12 'deffile.def', 13 ], 14 }, 15 { 16 'target_name': 'test_deffile_dll_notexported', 17 'type': 'shared_library', 18 'sources': [ 19 'deffile.cc', 20 ], 21 }, 22 { 23 'target_name': 'test_deffile_exe_ok', 24 'type': 'executable', 25 'sources': [ 26 'deffile.cc', 27 'deffile.def', 28 ], 29 }, 30 { 31 'target_name': 'test_deffile_exe_notexported', 32 'type': 'executable', 33 'sources': [ 34 'deffile.cc', 35 ], 36 }, 37 ] 38 } 39