diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 00:46:25 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 00:46:25 +0000 |
commit | 6be86ad0a99fcc0a717368b320103e6c1d4eab5a (patch) | |
tree | d1cd665a7165f15073372b0a051c7328ff7cd357 /webkit/SConscript.port | |
parent | 25db381a7bf6cf120524247c834094c6226cf00b (diff) | |
download | chromium_src-6be86ad0a99fcc0a717368b320103e6c1d4eab5a.zip chromium_src-6be86ad0a99fcc0a717368b320103e6c1d4eab5a.tar.gz chromium_src-6be86ad0a99fcc0a717368b320103e6c1d4eab5a.tar.bz2 |
Start attacking the list of undefined symbols from Linux WebCore. This defines
a bunch of symbols for POSIX systems dealing with filesystem calls and sound.
Review URL: http://codereview.chromium.org/7526
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/SConscript.port')
-rw-r--r-- | webkit/SConscript.port | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port index 1b90402..5f33adb 100644 --- a/webkit/SConscript.port +++ b/webkit/SConscript.port @@ -159,6 +159,12 @@ if env['PLATFORM'] == 'win32': '$PORT_DIR/rendering/RenderThemeWin.cpp', ]) +if env['PLATFORM'] == 'posix': + input_files.extend([ + '$PORT_DIR/platform/chromium/FileSystemPosix.cpp', + '$PORT_DIR/platform/chromium/SoundPosix.cpp', + ]) + if env['PLATFORM'] == 'darwin': input_files.extend([ '$PORT_DIR/bridge/mac/FrameMac.mm', |