Stop publishing compiler_unsupported.
Start publishing fixnum.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25217 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/tools/publish_all_pkgs.py b/tools/publish_all_pkgs.py
index 2e3d181..6c302e2 100644
--- a/tools/publish_all_pkgs.py
+++ b/tools/publish_all_pkgs.py
@@ -21,13 +21,9 @@
   pkgs_to_publish = []
   for name in os.listdir('pkg'):
     if os.path.isdir(os.path.join('pkg', name)):
-      if (name != '.svn' and name != 'fixnum' and name != 'expect'):
+      if (name != '.svn' and name != 'expect'):
         pkgs_to_publish.append(os.path.join('pkg', name))
 
-  # Publish dart2js as an "unsupported" package.
-  pkgs_to_publish.append(
-    os.path.join('sdk', 'lib', '_internal', 'compiler'))
-
   for pkg in pkgs_to_publish:
     print "\n\nPublishing %s:\n-------------------------------" % pkg
     subprocess.call(['python', 'tools/publish_pkg.py', pkg])