diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-01 17:50:29 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-01 17:50:29 +0000 |
commit | 064779aa18694b68536c113f7d5b74ccbe38d3ba (patch) | |
tree | dfd68ac72495ef4eb86957526a65e74ee7a92283 /gyp | |
parent | c6081abd2f28d2179ad8e3bef557cb0d00fffe01 (diff) |
Adding my Bitmap2Path sample for 1on1 meeting.
BUG=
R=reed@google.com, borenet@google.com
Author: dierk@google.com
Review URL: https://chromiumcodereview.appspot.com/16829003
git-svn-id: http://skia.googlecode.com/svn/trunk@9843 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/SampleApp.gyp | 1 | ||||
-rw-r--r-- | gyp/bench.gypi | 1 | ||||
-rw-r--r-- | gyp/tests.gyp | 1 | ||||
-rw-r--r-- | gyp/utils.gyp | 2 |
4 files changed, 5 insertions, 0 deletions
diff --git a/gyp/SampleApp.gyp b/gyp/SampleApp.gyp index f8ba9629b2..fcf8016212 100644 --- a/gyp/SampleApp.gyp +++ b/gyp/SampleApp.gyp @@ -86,6 +86,7 @@ '../samplecode/SamplePatch.cpp', '../samplecode/SamplePath.cpp', '../samplecode/SamplePathClip.cpp', + '../samplecode/SamplePathUtils.cpp', '../samplecode/SamplePathEffects.cpp', '../samplecode/SamplePicture.cpp', '../samplecode/SamplePictFile.cpp', diff --git a/gyp/bench.gypi b/gyp/bench.gypi index 2be3f22d24..7c5e1a3480 100644 --- a/gyp/bench.gypi +++ b/gyp/bench.gypi @@ -44,6 +44,7 @@ '../bench/MutexBench.cpp', '../bench/PathBench.cpp', '../bench/PathIterBench.cpp', + '../bench/PathUtilsBench.cpp', '../bench/PerlinNoiseBench.cpp', '../bench/PicturePlaybackBench.cpp', '../bench/PictureRecordBench.cpp', diff --git a/gyp/tests.gyp b/gyp/tests.gyp index 3bdf18d4f8..bcc61b5997 100644 --- a/gyp/tests.gyp +++ b/gyp/tests.gyp @@ -83,6 +83,7 @@ '../tests/PathCoverageTest.cpp', '../tests/PathMeasureTest.cpp', '../tests/PathTest.cpp', + '../tests/PathUtilsTest.cpp', '../tests/PDFPrimitivesTest.cpp', '../tests/PictureTest.cpp', '../tests/PictureUtilsTest.cpp', diff --git a/gyp/utils.gyp b/gyp/utils.gyp index 1b51b18c10..07f8921683 100644 --- a/gyp/utils.gyp +++ b/gyp/utils.gyp @@ -12,6 +12,7 @@ '../include/effects', '../include/images', '../include/lazy', + '../include/pathops', '../include/pipe', '../include/utils', '../include/utils/mac', @@ -82,6 +83,7 @@ '../src/utils/SkParseColor.cpp', '../src/utils/SkParsePath.cpp', '../src/utils/SkPictureUtils.cpp', + '../src/utils/SkPathUtils.cpp', '../src/utils/SkProxyCanvas.cpp', '../src/utils/SkSHA1.cpp', '../src/utils/SkSHA1.h', |