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

Side by Side Diff: sdch/win/config.h

Issue 2204683003: Roll open-vcdiff 21d7d0b9:2b9bd1fe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 682f6873 -> 2b9bd1fe Created 4 years, 4 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 | « sdch/mac/config.h ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The open-vcdiff Authors. All Rights Reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 //
3 // found in the LICENSE file. 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
4 14
5 // This file and directory exist so that we can use the provided config.h 15 /* Defined to PROJECT_VERSION from CMakeLists.txt */
6 // without putting vsprojects into our include path (which would also give us an 16 #define OPEN_VCDIFF_VERSION "0.8.4"
7 // incorrect/incompatible stdint.h).
8 17
9 #ifndef SDCH_WIN_CONFIG_H_ 18 /* Define to 1 if you have the <ext/rope> header file. */
10 #define SDCH_WIN_CONFIG_H_ 19 /* #undef HAVE_EXT_ROPE */
11 20
12 #include "../open-vcdiff/vsprojects/config.h" 21 /* Define to 1 if you have the `gettimeofday' function. */
22 /* #undef HAVE_GETTIMEOFDAY */
13 23
14 #endif // SDCH_WIN_CONFIG_H_ 24 /* Define to 1 if you have the <malloc.h> header file. */
25 #define HAVE_MALLOC_H
26
27 /* Define to 1 if you have the `memalign' function. */
28 /* #undef HAVE_MEMALIGN */
29
30 /* Define to 1 if you have the `mprotect' function. */
31 /* #undef HAVE_MPROTECT */
32
33 /* Define to 1 if you have the `posix_memalign' function. */
34 /* #undef HAVE_POSIX_MEMALIGN */
35
36 /* Define to 1 if you have the <sys/mman.h> header file. */
37 /* #undef HAVE_SYS_MMAN_H */
38
39 /* Define to 1 if you have the <sys/stat.h> header file. */
40 /* #undef HAVE_SYS_STAT_H */
41
42 /* Define to 1 if you have the <sys/time.h> header file. */
43 /* #undef HAVE_SYS_TIME_H */
44
45 /* Define to 1 if you have the <unistd.h> header file. */
46 /* #undef HAVE_UNISTD_H */
47
48 /* Define to 1 if you have the <windows.h> header file. */
49 #define HAVE_WINDOWS_H
50
51 /* Use custom compare function instead of memcmp */
52 /* #undef VCDIFF_USE_BLOCK_COMPARE_WORDS */
53
OLDNEW
« no previous file with comments | « sdch/mac/config.h ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698