aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-10 23:30:59 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-10 23:30:59 +0000
commit18fd2b923a5060175ab4e446e73a73cba581c20d (patch)
tree9940e91a8469c085c5b39e202215516353df18d8 /gyp
parentd923288e50b5a69afb0bdd5c161191b24cab8345 (diff)
Add a focused public API for src/record.
BUG=skia:2378 R=reed@google.com, robertphillips@google.com, mtklein@google.com, fmalita@chromium.org Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/233053005 git-svn-id: http://skia.googlecode.com/svn/trunk@14146 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r--gyp/record.gyp7
-rw-r--r--gyp/tests.gypi1
2 files changed, 6 insertions, 2 deletions
diff --git a/gyp/record.gyp b/gyp/record.gyp
index ae80f7c885..c7f35820e1 100644
--- a/gyp/record.gyp
+++ b/gyp/record.gyp
@@ -6,16 +6,19 @@
'include_dirs': [
'../include/config',
'../include/core',
+ '../include/record',
],
'direct_dependent_settings': {
'include_dirs': [
- '../src/record',
+ '../include/record', # World-public headers.
+ '../src/record', # Skia-public headers.
],
},
'sources': [
- '../src/record/SkRecorder.cpp',
'../src/record/SkRecordCulling.cpp',
'../src/record/SkRecordDraw.cpp',
+ '../src/record/SkRecorder.cpp',
+ '../src/record/SkRecording.cpp',
],
}]
}
diff --git a/gyp/tests.gypi b/gyp/tests.gypi
index 6fbcc03519..0650065309 100644
--- a/gyp/tests.gypi
+++ b/gyp/tests.gypi
@@ -140,6 +140,7 @@
'../tests/RecordDrawTest.cpp',
'../tests/RecordTest.cpp',
'../tests/RecorderTest.cpp',
+ '../tests/RecordingTest.cpp',
'../tests/RefCntTest.cpp',
'../tests/RefDictTest.cpp',
'../tests/RegionTest.cpp',