More SkRecord TODOs:

  - add basic test for SkRecorder
  - rejigger GYPs so that the include dir comes along with the dependency

BUG=skia:2378

Committed: http://code.google.com/p/skia/source/detail?r=14099

NOTRY=true
NOTREECHECKS=true
R=fmalita@chromium.org, mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/227673011

git-svn-id: http://skia.googlecode.com/svn/trunk@14100 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/RecorderTest.cpp b/tests/RecorderTest.cpp
index e04a9e9..4f8e357 100644
--- a/tests/RecorderTest.cpp
+++ b/tests/RecorderTest.cpp
@@ -28,7 +28,7 @@
     recorder.drawRect(SkRect::MakeWH(10, 10), SkPaint());
 
     int histogram[kRecordTypes];
-    bzero(&histogram, sizeof(histogram));
+    sk_bzero(&histogram, sizeof(histogram));
 
     record.visit(Tally(histogram));