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

Side by Side Diff: third_party/modp_b64/modp_b64_data.h

Issue 216903004: Add optional public header checking to GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unit test Created 6 years, 8 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 | « third_party/modp_b64/README.chromium ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "build/build_config.h" 1 #include "build/build_config.h"
2 #if !defined(COMPILER_MSVC)
3 #include <stdint.h> 2 #include <stdint.h>
4 #else
5 // VC8 doesn't have stdint.h. On the other hand, some compilers don't like
6 // the below code, because basictypes.h itself includes stdint.h and the
7 // typedefs below can cause conflicts.
8 #include "base/basictypes.h"
9 typedef uint8 uint8_t;
10 typedef uint32 uint32_t;
11 #endif
12 3
13 #define CHAR62 '+' 4 #define CHAR62 '+'
14 #define CHAR63 '/' 5 #define CHAR63 '/'
15 #define CHARPAD '=' 6 #define CHARPAD '='
16 static const char e0[256] = { 7 static const char e0[256] = {
17 'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', 'C', 'C', 8 'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', 'C', 'C',
18 'C', 'C', 'D', 'D', 'D', 'D', 'E', 'E', 'E', 'E', 9 'C', 'C', 'D', 'D', 'D', 'D', 'E', 'E', 'E', 'E',
19 'F', 'F', 'F', 'F', 'G', 'G', 'G', 'G', 'H', 'H', 10 'F', 'F', 'F', 'F', 'G', 'G', 'G', 'G', 'H', 'H',
20 'H', 'H', 'I', 'I', 'I', 'I', 'J', 'J', 'J', 'J', 11 'H', 'H', 'I', 'I', 'I', 'I', 'J', 'J', 'J', 'J',
21 'K', 'K', 'K', 'K', 'L', 'L', 'L', 'L', 'M', 'M', 12 'K', 'K', 'K', 'K', 'L', 'L', 'L', 'L', 'M', 'M',
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 473 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
483 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 474 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
484 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 475 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
485 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 476 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
486 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 477 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
487 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff 478 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff
488 }; 479 };
489 480
490 481
491 #endif 482 #endif
OLDNEW
« no previous file with comments | « third_party/modp_b64/README.chromium ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698