diff options
author | reed <reed@google.com> | 2014-10-24 11:16:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-24 11:16:19 -0700 |
commit | e332396d2fabb84894c816ff3999cf1c6262fd9d (patch) | |
tree | c717d2f18d303d4a81a88eb957e305bbdc6a3fa2 /gyp | |
parent | 60b6e9dbbc492f987a5b887dff60aec107ab70d0 (diff) |
move c api into include
BUG=skia:
Review URL: https://codereview.chromium.org/665203004
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/core.gyp | 2 | ||||
-rw-r--r-- | gyp/core.gypi | 3 | ||||
-rw-r--r-- | gyp/experimental.gyp | 2 | ||||
-rw-r--r-- | gyp/tests.gypi | 1 |
4 files changed, 6 insertions, 2 deletions
diff --git a/gyp/core.gyp b/gyp/core.gyp index afbc78a4ce..91545ee0c3 100644 --- a/gyp/core.gyp +++ b/gyp/core.gyp @@ -13,6 +13,7 @@ ], 'include_dirs': [ + '../include/c', '../include/config', '../include/core', '../include/pathops', @@ -99,6 +100,7 @@ ], 'direct_dependent_settings': { 'include_dirs': [ + '../include/c', '../include/config', '../include/core', '../include/pathops', diff --git a/gyp/core.gypi b/gyp/core.gypi index 553e36d7ba..9170fabde5 100644 --- a/gyp/core.gypi +++ b/gyp/core.gypi @@ -7,6 +7,9 @@ # { 'sources': [ + '<(skia_src_path)/c/sk_surface.cpp', + '<(skia_include_path)/c/sk_surface.h', + '<(skia_src_path)/core/SkAAClip.cpp', '<(skia_src_path)/core/SkAnnotation.cpp', '<(skia_src_path)/core/SkAdvancedTypefaceMetrics.cpp', diff --git a/gyp/experimental.gyp b/gyp/experimental.gyp index ca21b3b824..c3789fad57 100644 --- a/gyp/experimental.gyp +++ b/gyp/experimental.gyp @@ -12,8 +12,6 @@ '../experimental/SkSetPoly3To3.cpp', '../experimental/SkSetPoly3To3_A.cpp', '../experimental/SkSetPoly3To3_D.cpp', - '../experimental/sk_surface.h', - '../experimental/sk_surface.cpp', ], 'direct_dependent_settings': { 'include_dirs': [ diff --git a/gyp/tests.gypi b/gyp/tests.gypi index b6e060646e..59604db6c5 100644 --- a/gyp/tests.gypi +++ b/gyp/tests.gypi @@ -58,6 +58,7 @@ '../tests/BlendTest.cpp', '../tests/BlitRowTest.cpp', '../tests/BlurTest.cpp', + '../tests/CTest.cpp', '../tests/CachedDataTest.cpp', '../tests/CachedDecodingPixelRefTest.cpp', '../tests/CanvasStateHelpers.cpp', |