OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 The Chromium Authors. 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 'includes': [ |
| 7 '../../build/common.gypi', |
| 8 ], |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'codesighs', |
| 12 'type': 'executable', |
| 13 'sources': [ |
| 14 'codesighs.c', |
| 15 ], |
| 16 }, |
| 17 { |
| 18 'target_name': 'maptsvdifftool', |
| 19 'type': 'executable', |
| 20 'sources': [ |
| 21 'maptsvdifftool.c', |
| 22 ], |
| 23 }, |
| 24 ], |
| 25 'conditions': [ |
| 26 ['OS=="win"', { |
| 27 'targets': [ |
| 28 { |
| 29 'target_name': 'msmap2tsv', |
| 30 'type': 'executable', |
| 31 'sources': [ |
| 32 'msmap2tsv.c', |
| 33 ], |
| 34 'link_settings': { |
| 35 'libraries': [ |
| 36 '-lDbgHelp.lib', |
| 37 ], |
| 38 }, |
| 39 }, |
| 40 { |
| 41 'target_name': 'msdump2symdb', |
| 42 'type': 'executable', |
| 43 'sources': [ |
| 44 'msdump2symdb.c', |
| 45 ], |
| 46 }, |
| 47 ], |
| 48 }, { # else: OS != "windows" |
| 49 'targets': [ |
| 50 { |
| 51 'target_name': 'nm2tsv', |
| 52 'type': 'executable', |
| 53 'sources': [ |
| 54 'nm2tsv.c', |
| 55 ], |
| 56 }, |
| 57 ], |
| 58 }], |
| 59 ], |
| 60 } |
OLD | NEW |