remove obsolete SK_BUILD_FOR_BREW conditional



git-svn-id: http://skia.googlecode.com/svn/trunk@473 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/animator/SkScriptTokenizer.cpp b/src/animator/SkScriptTokenizer.cpp
index 6be2abd..efd1872 100644
--- a/src/animator/SkScriptTokenizer.cpp
+++ b/src/animator/SkScriptTokenizer.cpp
@@ -1274,7 +1274,6 @@
 #define testTrue(expression) { #expression, SkOperand2::kS32, 1 }
 #define testFalse(expression) { #expression, SkOperand2::kS32, 0 }
 
-#if !defined(SK_BUILD_FOR_BREW)
 static const SkScriptNAnswer2 scriptTests[]  = {
     testInt(1||0&&3),
 #ifdef SK_CAN_USE_FLOAT
@@ -1473,12 +1472,11 @@
     , {    "123.5", SkOperand2::kScalar, 0, SkIntToScalar(123) + SK_Scalar1/2 }
 #endif
 };
-#endif // build for brew
 
 #define SkScriptNAnswer_testCount    SK_ARRAY_COUNT(scriptTests)
 
 void SkScriptEngine2::UnitTest() {
-#if !defined(SK_BUILD_FOR_BREW) && defined(SK_SUPPORT_UNITTEST)
+#if defined(SK_SUPPORT_UNITTEST)
     ValidateDecompileTable();
     for (int index = 0; index < SkScriptNAnswer_testCount; index++) {
         SkScriptEngine2 engine(scriptTests[index].fType);