diff options
Diffstat (limited to 'webkit/build/WebKit')
-rw-r--r-- | webkit/build/WebKit/SConscript | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/webkit/build/WebKit/SConscript b/webkit/build/WebKit/SConscript new file mode 100644 index 0000000..8564a95 --- /dev/null +++ b/webkit/build/WebKit/SConscript @@ -0,0 +1,23 @@ +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +Import('env') + +env = env.Clone() + +env.Append( + CPPDEFINES = [ + 'WEBKIT_IMPLEMENTATION' + ], + CPPPATH = [ + '$WEBKIT_DIR/build/WebCore', + '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/public', + ] +) + +input_files = [ + '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebString.cpp', +] + +env.ChromeLibrary('WebKit', input_files) |