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

Side by Side Diff: build/precompile.h

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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 | « build/config/jumbo.gni ('k') | cc/cc.gni » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is used as a precompiled header for both C and C++ files. So 5 // This file is used as a precompiled header for both C and C++ files. So
6 // any C++ headers must go in the __cplusplus block below. 6 // any C++ headers must go in the __cplusplus block below.
7 7
8 #if defined(BUILD_PRECOMPILE_H_) 8 #if defined(BUILD_PRECOMPILE_H_)
9 #error You shouldn't include the precompiled header file more than once. 9 #error You shouldn't include the precompiled header file more than once.
10 #endif 10 #endif
11 11
12 #define BUILD_PRECOMPILE_H_ 12 #define BUILD_PRECOMPILE_H_
13 13
14 #ifndef _USE_MATH_DEFINES
15 // Needed to get preprocessor macros like M_PI out of VS libraries.
14 #define _USE_MATH_DEFINES 16 #define _USE_MATH_DEFINES
17 #endif
15 18
16 #include <errno.h> 19 #include <errno.h>
17 #include <fcntl.h> 20 #include <fcntl.h>
18 #include <limits.h> 21 #include <limits.h>
19 #include <math.h> 22 #include <math.h>
20 #include <memory.h> 23 #include <memory.h>
21 #include <signal.h> 24 #include <signal.h>
22 #include <stdarg.h> 25 #include <stdarg.h>
23 #include <stddef.h> 26 #include <stddef.h>
24 #include <stdio.h> 27 #include <stdio.h>
(...skipping 23 matching lines...) Expand all
48 #include <ostream> 51 #include <ostream>
49 #include <queue> 52 #include <queue>
50 #include <set> 53 #include <set>
51 #include <sstream> 54 #include <sstream>
52 #include <stack> 55 #include <stack>
53 #include <string> 56 #include <string>
54 #include <utility> 57 #include <utility>
55 #include <vector> 58 #include <vector>
56 59
57 #endif // __cplusplus 60 #endif // __cplusplus
OLDNEW
« no previous file with comments | « build/config/jumbo.gni ('k') | cc/cc.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698