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

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

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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
« no previous file with comments | « third_party/cld_2/cld_2.gyp ('k') | third_party/custom_tabs_client/custom_tabs_client.gyp » ('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 'target_defaults': {
7 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
8 'msvs_disabled_warnings': [ 4267, ],
9 },
10 'targets': [
11 {
12 'target_name': 'codesighs',
13 'type': 'executable',
14 'sources': [
15 'codesighs.c',
16 ],
17 },
18 {
19 'target_name': 'maptsvdifftool',
20 'type': 'executable',
21 'sources': [
22 'maptsvdifftool.c',
23 ],
24 },
25 ],
26 'conditions': [
27 ['OS=="win"', {
28 'targets': [
29 {
30 'target_name': 'msmap2tsv',
31 'type': 'executable',
32 'sources': [
33 'msmap2tsv.c',
34 ],
35 'link_settings': {
36 'libraries': [
37 '-lDbgHelp.lib',
38 ],
39 },
40 },
41 {
42 'target_name': 'msdump2symdb',
43 'type': 'executable',
44 'sources': [
45 'msdump2symdb.c',
46 ],
47 },
48 ],
49 }, { # else: OS != "windows"
50 'targets': [
51 {
52 'target_name': 'nm2tsv',
53 'type': 'executable',
54 'sources': [
55 'nm2tsv.c',
56 ],
57 },
58 ],
59 }],
60 ],
61 }
OLDNEW
« no previous file with comments | « third_party/cld_2/cld_2.gyp ('k') | third_party/custom_tabs_client/custom_tabs_client.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698