Enabling fastbuild in GYP define.

The fastbuild flag means debug symbols are not generated. This has no
impact on our tests as long as we don't need to debug with the built
binaries, i.e. is perfect for the buildbots. Compilation is 30% faster
or more.

BUG=None
TEST=Tested on local master and linux, mac and win slaves.

Review URL: https://webrtc-codereview.appspot.com/499001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2062 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org
2012-04-19 07:30:39 +00:00
parent a768970bac
commit 76643d7c62

View File

@ -100,7 +100,7 @@ class WebRTCFactory(factory.BuildFactory):
self.build_status_oracle = build_status_oracle
self.is_try_slave = is_try_slave
self.properties = properties.Properties()
self.gyp_params = []
self.gyp_params = ['-Dfastbuild=1'] # No debug symbols = build speedup
self.release = False
self.path_joiner = PosixPathJoin
# For GClient solution definition: