diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-25 13:27:25 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-25 13:27:25 +0000 |
commit | a89043ab38c1a93bcce2951099c470e84e82a0c9 (patch) | |
tree | 9ec165f35137673a77e76b08411373d41573834a /third_party/codesighs/codesighs.gyp | |
parent | 62a5d6c481524a13ffd8421b3c9a5fe5278041a5 (diff) | |
download | chromium_src-a89043ab38c1a93bcce2951099c470e84e82a0c9.zip chromium_src-a89043ab38c1a93bcce2951099c470e84e82a0c9.tar.gz chromium_src-a89043ab38c1a93bcce2951099c470e84e82a0c9.tar.bz2 |
Capture Mozilla's codesighs, for use in executable sizing.
Vanilla code, no changes, except for the addition of:
* LICENSE, copied from elsewhere in the Mozilla tree;
* README.chromium, documenting what's going on.
* codesighs.gyp, for building with the rest of Chromium.
Review URL: http://codereview.chromium.org/93155
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/codesighs/codesighs.gyp')
-rw-r--r-- | third_party/codesighs/codesighs.gyp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/third_party/codesighs/codesighs.gyp b/third_party/codesighs/codesighs.gyp new file mode 100644 index 0000000..c3874f8 --- /dev/null +++ b/third_party/codesighs/codesighs.gyp @@ -0,0 +1,60 @@ +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'includes': [ + '../../build/common.gypi', + ], + 'targets': [ + { + 'target_name': 'codesighs', + 'type': 'executable', + 'sources': [ + 'codesighs.c', + ], + }, + { + 'target_name': 'maptsvdifftool', + 'type': 'executable', + 'sources': [ + 'maptsvdifftool.c', + ], + }, + ], + 'conditions': [ + ['OS=="win"', { + 'targets': [ + { + 'target_name': 'msmap2tsv', + 'type': 'executable', + 'sources': [ + 'msmap2tsv.c', + ], + 'link_settings': { + 'libraries': [ + '-lDbgHelp.lib', + ], + }, + }, + { + 'target_name': 'msdump2symdb', + 'type': 'executable', + 'sources': [ + 'msdump2symdb.c', + ], + }, + ], + }, { # else: OS != "windows" + 'targets': [ + { + 'target_name': 'nm2tsv', + 'type': 'executable', + 'sources': [ + 'nm2tsv.c', + ], + }, + ], + }], + ], +} |