diff options
author | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 18:16:15 +0000 |
---|---|---|
committer | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 18:16:15 +0000 |
commit | e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a (patch) | |
tree | 646e053b18ed7fc5456aeb76771a8faede60e050 /ppapi/c | |
parent | ae4da5152e5c30ce4bc9e9e49f6c4680be9bdbd1 (diff) | |
download | chromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.zip chromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.tar.gz chromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.tar.bz2 |
Add c/dev/ppb_widget_dev.h and cpp/non_thread_safe_ref_count.h to ppapi.gyp. Add a simple test to ensure all C++ files compile. Re-sorted the includes in test_c_includes.c that uncovered a problem whereby ppapi headers expect pp_stdint.h to include stddef.h, and it wasn't doing it on Windows.
See http://codereview.chromium.org/5190004/ for an attempt at automating the test generation and verification of ppapi.gyp.
BUG=66321
TEST=None
Review URL: http://codereview.chromium.org/5233002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/pp_stdint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/c/pp_stdint.h b/ppapi/c/pp_stdint.h index 3bb11b9..23a7b78 100644 --- a/ppapi/c/pp_stdint.h +++ b/ppapi/c/pp_stdint.h @@ -26,9 +26,10 @@ typedef unsigned __int64 uint64_t; #else #include <stdint.h> -#include <stddef.h> // Needed for size_t. #endif +#include <stddef.h> // Needed for size_t. + /** * @} * End addtogroup PP |