AU: delta compress the kernel partition

Add kernel partition to proto buf. Change delta generator to compress
the kernel partition and the delta performer to perform operations to
update the kernel partition. Update unittests to test it.

Also, remove checksums from the protobuf while we're at it, since the
partitions themselves will contains checksums.

BUG=None
TEST=Attached unittest

Review URL: http://codereview.chromium.org/1819002
diff --git a/extent_writer_unittest.cc b/extent_writer_unittest.cc
index 484d069..f0f5f7a 100644
--- a/extent_writer_unittest.cc
+++ b/extent_writer_unittest.cc
@@ -237,7 +237,7 @@
   EXPECT_TRUE(direct_writer.End());
   
   // check file size, then data inside
-  ASSERT_EQ(2 * kBlockSize, FileSize(path()));
+  ASSERT_EQ(2 * kBlockSize, utils::FileSize(path()));
   
   vector<char> resultant_data;
   EXPECT_TRUE(utils::ReadFile(path(), &resultant_data));