Revert "Add external projects only CFlags option"

This reverts commit 6a350878d87d76bcfcd35697fb5c2598117e5a11.

Reason for revert: Breakage of many AOSP targets

Change-Id: I917e6daa04ac02ecb98c7bb1816f9bdaf46429f5
diff --git a/cc/config/clang.go b/cc/config/clang.go
index 69668b6..ba1cd3c 100644
--- a/cc/config/clang.go
+++ b/cc/config/clang.go
@@ -173,17 +173,14 @@
 		// this new warning are fixed.
 		"-Wno-null-pointer-arithmetic",
 
-		// Disable c++98-specific warning since Android is not concerned with C++98
-		// compatibility.
-		"-Wno-c++98-compat-extra-semi",
-	}, " "))
-
-	// Extra cflags for projects under external/ directory
-	pctx.StaticVariable("ClangExtraExternalCflags", strings.Join([]string{
 		// http://b/72330874 Disable -Wenum-compare until the instances detected by this new
 		// warning are fixed.
 		"-Wno-enum-compare",
 		"-Wno-enum-compare-switch",
+
+		// Disable c++98-specific warning since Android is not concerned with C++98
+		// compatibility.
+		"-Wno-c++98-compat-extra-semi",
 	}, " "))
 }