| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 Import('env') | 5 Import('env') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 | 8 |
| 9 env.Append( | 9 env.Append( |
| 10 CPPDEFINES = [ | 10 CPPDEFINES = [ |
| 11 'WEBKIT_IMPLEMENTATION' | 11 'WEBKIT_IMPLEMENTATION', |
| 12 'WEBKIT_USING_SKIA' |
| 12 ], | 13 ], |
| 13 CPPPATH = [ | 14 CPPPATH = [ |
| 14 '$WEBKIT_DIR/build/WebCore', | 15 '$WEBKIT_DIR/build/WebCore', |
| 15 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/public', | 16 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/public', |
| 16 ] | 17 ] |
| 17 ) | 18 ) |
| 18 | 19 |
| 19 input_files = [ | 20 input_files = [ |
| 21 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/ChromiumBridge.cpp', |
| 22 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebCString.cpp', |
| 23 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebImageSkia.cpp', |
| 24 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebKit.cpp', |
| 20 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebString.cpp', | 25 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebString.cpp', |
| 26 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/src/WebURL.cpp', |
| 21 ] | 27 ] |
| 22 | 28 |
| 23 env.ChromeLibrary('WebKit', input_files) | 29 env.ChromeLibrary('WebKit', input_files) |
| OLD | NEW |