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

Side by Side Diff: net/tools/spdyshark/moduleinfo.nmake

Issue 68013005: Remove net/tools/spdyshark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « net/tools/spdyshark/moduleinfo.h ('k') | net/tools/spdyshark/packet-spdy.h » ('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 #
2 # $Id$
3 #
4
5 # The name
6 PACKAGE=spdy
7
8 # The version
9 MODULE_VERSION_MAJOR=0
10 MODULE_VERSION_MINOR=1
11 MODULE_VERSION_MICRO=0
12 MODULE_VERSION_EXTRA=0
13
14 #
15 # The RC_VERSION should be comma-separated, not dot-separated,
16 # as per Graham Bloice's message in
17 #
18 # http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
19 #
20 # "The RC_VERSION variable in config.nmake should be comma separated.
21 # This allows the resources to be built correctly and the version
22 # number to be correctly displayed in the explorer properties dialog
23 # for the executables, and XP's tooltip, rather than 0.0.0.0."
24 #
25
26 MODULE_VERSION=$(MODULE_VERSION_MAJOR).$(MODULE_VERSION_MINOR).$(MODULE_VERSION_ MICRO).$(MODULE_VERSION_EXTRA)
27 RC_MODULE_VERSION=$(MODULE_VERSION_MAJOR),$(MODULE_VERSION_MINOR),$(MODULE_VERSI ON_MICRO),$(MODULE_VERSION_EXTRA)
28
OLDNEW
« no previous file with comments | « net/tools/spdyshark/moduleinfo.h ('k') | net/tools/spdyshark/packet-spdy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698