Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: third_party/codesighs/codesighs.gyp

Issue 93155: Capture Mozilla's codesighs, for use in executable sizing.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/codesighs/codesighs.c ('k') | third_party/codesighs/maptsvdifftool.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « third_party/codesighs/codesighs.c ('k') | third_party/codesighs/maptsvdifftool.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698