always embed zlib and openssl for C#
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index dc11c0b..99de45a 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -512,7 +512,7 @@
 
   def make_targets(self):
     # For Windows, this target doesn't really build anything,
-    # everything is build by buildall script later.
+    # everything is built by buildall script later.
     if self.platform == 'windows':
       return []
     else:
@@ -521,9 +521,10 @@
   def make_options(self):
     if self.platform == 'mac':
       # On Mac, official distribution of mono is 32bit.
-      return ['CFLAGS=-arch i386', 'LDFLAGS=-arch i386']
+      return ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true',
+              'CFLAGS=-arch i386', 'LDFLAGS=-arch i386']
     else:
-      return []
+      return ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
 
   def build_steps(self):
     if self.platform == 'windows':