diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-12 01:52:29 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-12 01:52:29 +0000 |
commit | 335db8d0ed06b83f44831b9684f8ab9132cfc3e9 (patch) | |
tree | b42c4d9ed2fba7f5b3cadc5082295cce73021ea8 /chrome/common/common.scons | |
parent | 7f4bfe196f0976c7151de206601860b47f913fcb (diff) | |
download | chromium_src-335db8d0ed06b83f44831b9684f8ab9132cfc3e9.zip chromium_src-335db8d0ed06b83f44831b9684f8ab9132cfc3e9.tar.gz chromium_src-335db8d0ed06b83f44831b9684f8ab9132cfc3e9.tar.bz2 |
...
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6872 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/common.scons')
-rw-r--r-- | chrome/common/common.scons | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/common/common.scons b/chrome/common/common.scons index 6cbca92..eba23c6 100644 --- a/chrome/common/common.scons +++ b/chrome/common/common.scons @@ -110,17 +110,18 @@ if env['PLATFORM'] == 'win32': 'win_util.cc', 'worker_thread_ticker.cc', ]) -elif env['PLATFORM'] == 'posix': - input_files.extend([ - 'gfx/chrome_font_skia.cc', - ]) if env['PLATFORM'] == 'win32': # Windows specific files input_files.extend([ 'ipc_channel_win.cc', ]) -else: +elif env['PLATFORM'] == 'posix': + input_files.extend([ + 'gfx/chrome_font_skia.cc', + ]) + +if env['PLATFORM'] in ['posix', 'mac']: input_files.extend([ 'ipc_channel_posix.cc', ]) |