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

Side by Side Diff: core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/opj_config_private.h

Issue 303723004: Fix licenses in headers to pass Chromium's checklicenses tool. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: rebase Created 6 years, 7 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
OLDNEW
1 // Copyright 2014 PDFium 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
1 /* create opj_config_private.h for CMake */ 7 /* create opj_config_private.h for CMake */
2 /* #undef OPJ_HAVE_INTTYPES_H */ 8 /* #undef OPJ_HAVE_INTTYPES_H */
3 9
4 #ifndef _WIN32 10 #ifndef _WIN32
5 #ifndef OPJ_HAVE_INTTYPES_H 11 #ifndef OPJ_HAVE_INTTYPES_H
6 #define OPJ_HAVE_INTTYPES_H 12 #define OPJ_HAVE_INTTYPES_H
7 #endif 13 #endif
8 #endif 14 #endif
9 15
10 #define OPJ_PACKAGE_VERSION "2.1.0" 16 #define OPJ_PACKAGE_VERSION "2.1.0"
(...skipping 23 matching lines...) Expand all
34 __LITTLE_ENDIAN__ to match the endianness of the architecture being 40 __LITTLE_ENDIAN__ to match the endianness of the architecture being
35 compiled for. This is not necessarily the same as the architecture of the 41 compiled for. This is not necessarily the same as the architecture of the
36 machine doing the building. In order to support Universal Binaries on 42 machine doing the building. In order to support Universal Binaries on
37 Mac OS X, we prefer those defines to decide the endianness. 43 Mac OS X, we prefer those defines to decide the endianness.
38 On other platforms we use the result of the TRY_RUN. */ 44 On other platforms we use the result of the TRY_RUN. */
39 #if !defined(__APPLE__) 45 #if !defined(__APPLE__)
40 /* #undef OPJ_BIG_ENDIAN */ 46 /* #undef OPJ_BIG_ENDIAN */
41 #elif defined(__BIG_ENDIAN__) 47 #elif defined(__BIG_ENDIAN__)
42 # define OPJ_BIG_ENDIAN 48 # define OPJ_BIG_ENDIAN
43 #endif 49 #endif
OLDNEW
« no previous file with comments | « core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/opj_config.h ('k') | core/src/fxcodec/fx_zlib/zlib_v128/trees.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698