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

Side by Side Diff: xz/src/common/common_w32res.rc

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 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 | « xz/src/Makefile.am ('k') | xz/src/common/mythread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ native
OLDNEW
(Empty)
1 /*
2 * Author: Lasse Collin
3 *
4 * This file has been put into the public domain.
5 * You can do whatever you want with this file.
6 */
7
8 #include <winresrc.h>
9 #include "config.h"
10 #define LZMA_H_INTERNAL
11 #define LZMA_H_INTERNAL_RC
12 #include "lzma/version.h"
13
14 #ifndef MY_BUILD
15 # define MY_BUILD 0
16 #endif
17 #define MY_VERSION LZMA_VERSION_MAJOR,LZMA_VERSION_MINOR,LZMA_VERSION_PATCH,MY_B UILD
18
19 #define MY_FILENAME MY_NAME MY_SUFFIX
20 #define MY_COMPANY "Lasse Collin and Igor Pavlov"
21 #define MY_COPYRIGHT "Public Domain by " MY_COMPANY
22 #define MY_COMMENTS "http://tukaani.org/xz/"
23
24 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
25 VS_VERSION_INFO VERSIONINFO
26 FILEVERSION MY_VERSION
27 PRODUCTVERSION MY_VERSION
28 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
29 FILEFLAGS 0
30 FILEOS VOS_NT_WINDOWS32
31 FILETYPE MY_TYPE
32 FILESUBTYPE 0x0L
33 BEGIN
34 BLOCK "StringFileInfo"
35 BEGIN
36 BLOCK "040904b0"
37 BEGIN
38 VALUE "Comments", MY_COMMENTS
39 VALUE "CompanyName", MY_COMPANY
40 VALUE "FileDescription", MY_DESC
41 VALUE "FileVersion", LZMA_VERSION_STRING
42 VALUE "InternalName", MY_NAME
43 VALUE "LegalCopyright", MY_COPYRIGHT
44 VALUE "OriginalFilename", MY_FILENAME
45 VALUE "ProductName", PACKAGE_NAME
46 VALUE "ProductVersion", LZMA_VERSION_STRING
47 END
48 END
49 BLOCK "VarFileInfo"
50 BEGIN
51 VALUE "Translation", 0x409, 1200
52 END
53 END
OLDNEW
« no previous file with comments | « xz/src/Makefile.am ('k') | xz/src/common/mythread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698