We need to build browser_tests during 'compile' step, so enabling in gypi. Disabled from running in coverage_posix.py. 

Review URL: https://chromiumcodereview.appspot.com/11377077

Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 157c0b6e86494272a8012d7b21a9347c07087528
diff --git a/coverage_posix.py b/coverage_posix.py
index c96f391..3a906f0 100755
--- a/coverage_posix.py
+++ b/coverage_posix.py
@@ -648,6 +648,11 @@
       # executable. So skip this test from adding into coverage_bundles.py.
       if testname == 'pyautolib':
         continue
+      # Random tests are failing in browser_tests. Disabling it for now.
+      # crbug.com/159748
+      if testname == 'browser_tests' and self.options.bundles:
+        logging.info('Skipping browser_tests from running')
+        continue
       self.tests += [os.path.join(self.directory, testname)]
       if gtest_filter:
         self.test_filters[testname] = gtest_filter