diff options
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/gpu.gyp | 4 | ||||
-rw-r--r-- | gpu/pgl/pgl.cc | 4 | ||||
-rw-r--r-- | gpu/pgl/pgl.h | 4 |
3 files changed, 4 insertions, 8 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp index 5110762..ff3391e 100644 --- a/gpu/gpu.gyp +++ b/gpu/gpu.gyp @@ -413,10 +413,6 @@ 'gles2_c_lib', '../third_party/npapi/npapi.gyp:npapi', ], - 'include_dirs': [ - '..', - '../third_party/npapi/bindings', - ], 'all_dependent_settings': { 'include_dirs': [ '../third_party/npapi/bindings', diff --git a/gpu/pgl/pgl.cc b/gpu/pgl/pgl.cc index cf32e6a..3e42854 100644 --- a/gpu/pgl/pgl.cc +++ b/gpu/pgl/pgl.cc @@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include <build/build_config.h> +#include "gpu/pgl/pgl.h" +#include "build/build_config.h" #include "gpu/command_buffer/client/gles2_cmd_helper.h" #include "gpu/command_buffer/client/gles2_implementation.h" #include "gpu/command_buffer/client/gles2_lib.h" #include "gpu/command_buffer/common/constants.h" #include "gpu/command_buffer/common/thread_local.h" #include "gpu/pgl/command_buffer_pepper.h" -#include "gpu/pgl/pgl.h" namespace { const int32 kTransferBufferSize = 512 * 1024; diff --git a/gpu/pgl/pgl.h b/gpu/pgl/pgl.h index 118d6fe..e413587 100644 --- a/gpu/pgl/pgl.h +++ b/gpu/pgl/pgl.h @@ -5,8 +5,8 @@ #ifndef GPU_PGL_PGL_H #define GPU_PGL_PGL_H -#include "npapi.h" -#include "npapi_extensions.h" +#include <npapi.h> +#include <npapi_extensions.h> #define PGL_TRUE 1 #define PGL_FALSE 0 |