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/build | |
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/build')
-rw-r--r-- | webkit/build/WebCore/SConscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webkit/build/WebCore/SConscript b/webkit/build/WebCore/SConscript index 4d89455..a593fde 100644 --- a/webkit/build/WebCore/SConscript +++ b/webkit/build/WebCore/SConscript @@ -742,6 +742,11 @@ if env['PLATFORM'] in ('darwin', 'posix'): for remove in remove_files: input_files.remove(remove) +if env['PLATFORM'] == 'posix': + input_files.extend([ + '$WEBCORE_DIR/platform/posix/FileSystemPOSIX.cpp', + ]) + # Windows specific files. if env['PLATFORM'] == 'win32': input_files.extend([ |