Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: webkit/build/WebKit/SConscript

Issue 28119: Chromium changes to use new WebKit, WebKitClient, and WebClipboard interfaces... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/renderer_glue.cc ('k') | webkit/build/WebKit/WebKit.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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)
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_glue.cc ('k') | webkit/build/WebKit/WebKit.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698