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

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

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

Powered by Google App Engine
This is Rietveld 408576698