summaryrefslogtreecommitdiffstats
path: root/skia
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-11 23:05:11 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-11 23:05:11 +0000
commitca4ce1ca78aabbffef981ab41bfdd646bfeb96d7 (patch)
treea97a4c3ae633f774e8665d3306b63ccaf6d3b95a /skia
parenta9122956f932ea606843d43aa3fc8a4a4f91f7ed (diff)
downloadchromium_src-ca4ce1ca78aabbffef981ab41bfdd646bfeb96d7.zip
chromium_src-ca4ce1ca78aabbffef981ab41bfdd646bfeb96d7.tar.gz
chromium_src-ca4ce1ca78aabbffef981ab41bfdd646bfeb96d7.tar.bz2
Capture initial SCons build of {base,net,googleurl}_unittests on Mac:
* Initial flags and options that mimick how XCode builds (e.g. XCode uses "gcc -x c++" to compile C++, but g++ to link it). * Load minimal set of SConscript files: base, googleurl, net, skia, testing, third_party. (breakpad and webkit to come.) * Correct .cc => .mm file names (multiple places). * Add base/{platform_thread,platform_test,worker_pool}_mac.mm. * Remove -Wall when we build Skia, like we do on Linux. Review URL: http://codereview.chromium.org/2435 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2097 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r--skia/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/skia/SConscript b/skia/SConscript
index a255067..a646836 100644
--- a/skia/SConscript
+++ b/skia/SConscript
@@ -36,7 +36,7 @@ if env['PLATFORM'] == 'win32':
'/wd4800',
],
)
-elif env['PLATFORM'] == 'posix':
+elif env['PLATFORM'] in ('posix', 'darwin'):
if '-Wall' in env['CCFLAGS']:
# We're not responsible for bad warning hygiene in this third party code.
env['CCFLAGS'].remove('-Wall')