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

Unified Diff: gyp/opts.gyp

Issue 1265443002: add -Iinclude/private anywhere we have -Isrc/core (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/ktx.gyp ('k') | gyp/pathops_skpclip.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/opts.gyp
diff --git a/gyp/opts.gyp b/gyp/opts.gyp
index b4fb6098818fefd343bcba23fb4430e436f543da..52d883138d1692046744009a0ec6e7211d986234 100644
--- a/gyp/opts.gyp
+++ b/gyp/opts.gyp
@@ -25,6 +25,7 @@
'effects.gyp:*'
],
'include_dirs': [
+ '../include/private',
'../src/core',
'../src/opts',
'../src/utils',
@@ -88,7 +89,10 @@
'type': 'static_library',
'standalone_static_library': 1,
'dependencies': [ 'core.gyp:*' ],
- 'include_dirs': [ '../src/core' ],
+ 'include_dirs': [
+ '../include/private',
+ '../src/core',
+ ],
'sources': [ '<@(ssse3_sources)' ],
'conditions': [
[ 'skia_os == "win"', {
@@ -105,6 +109,10 @@
'type': 'static_library',
'standalone_static_library': 1,
'dependencies': [ 'core.gyp:*' ],
+ 'include_dirs': [
+ '../include/private',
+ '../src/core',
+ ],
'sources': [ '<@(sse41_sources)' ],
'conditions': [
[ 'skia_os == "win"', {
@@ -128,6 +136,7 @@
'effects.gyp:*'
],
'include_dirs': [
+ '../include/private',
'../src/core',
'../src/opts',
'../src/utils',
« no previous file with comments | « gyp/ktx.gyp ('k') | gyp/pathops_skpclip.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698