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

Unified Diff: webkit/SConscript.port

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/SConscript.javascriptcore_pcre ('k') | webkit/activex_shim/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/SConscript.port
===================================================================
--- webkit/SConscript.port (revision 7290)
+++ webkit/SConscript.port (working copy)
@@ -1,197 +1,205 @@
-# Copyright (c) 2006-2008 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()
-
-if env.Bit('windows'):
- env.Prepend(
- CCFLAGS = [
- '/TP',
-
- '/wd4244',
- '/wd4291',
- '/wd4345',
- '/wd4521',
- '/wd4800',
- ],)
-elif env.Bit('linux'):
- env.Append(
- # For the image readers and decoders:
- CXXFLAGS = ["-Wno-sign-compare"],
- LIBS = ['png'],
- )
-
-input_files = [
- '$PORT_DIR/bridge/chromium/PluginsChromium.cpp',
-
- '$PORT_DIR/page/Location.cpp',
- '$PORT_DIR/page/chromium/AccessibilityObjectChromium.cpp',
- '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp',
- '$PORT_DIR/page/chromium/DragControllerChromium.cpp',
- '$PORT_DIR/page/chromium/EventHandlerChromium.cpp',
- '$PORT_DIR/page/chromium/FrameChromium.cpp',
-
- '$PORT_DIR/platform/GKURL.cpp',
-
- '$PORT_DIR/platform/chromium/ChromiumDataObject.cpp',
- '$PORT_DIR/platform/chromium/ClipboardChromium.cpp',
- '$PORT_DIR/platform/chromium/ClipboardUtilitiesChromium.cpp',
- '$PORT_DIR/platform/chromium/ContextMenuChromium.cpp',
- '$PORT_DIR/platform/chromium/ContextMenuItemChromium.cpp',
- '$PORT_DIR/platform/chromium/CursorChromium.cpp',
- '$PORT_DIR/platform/chromium/DragDataChromium.cpp',
- '$PORT_DIR/platform/chromium/DragImageChromium.cpp',
- '$PORT_DIR/platform/chromium/EditorChromium.cpp',
- '$PORT_DIR/platform/chromium/FileChooserChromium.cpp',
- '$PORT_DIR/platform/chromium/FileSystemChromium.cpp',
- '$PORT_DIR/platform/chromium/FramelessScrollView.cpp',
- '$PORT_DIR/platform/chromium/Language.cpp',
- '$PORT_DIR/platform/chromium/MimeTypeRegistryChromium.cpp',
- '$PORT_DIR/platform/chromium/PasteboardChromium.cpp',
- '$PORT_DIR/platform/chromium/PlatformKeyboardEventChromium.cpp',
- '$PORT_DIR/platform/chromium/PlatformScreenChromium.cpp',
- '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp',
- '$PORT_DIR/platform/chromium/SearchPopupMenuChromium.cpp',
- '$PORT_DIR/platform/chromium/SharedTimerChromium.cpp',
- '$PORT_DIR/platform/chromium/SSLKeyGeneratorChromium.cpp',
- '$PORT_DIR/platform/chromium/SystemTimeChromium.cpp',
- '$PORT_DIR/platform/chromium/TemporaryLinkStubs.cpp',
- '$PORT_DIR/platform/chromium/TextBoundariesChromium.cpp',
- '$PORT_DIR/platform/chromium/TextBreakIteratorInternalICUChromium.cpp',
- '$PORT_DIR/platform/chromium/WidgetChromium.cpp',
- '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp',
-
- '$PORT_DIR/platform/graphics/skia/AffineTransformSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/ColorSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/FloatPointSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/FloatRectSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/GradientSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/GraphicsContextSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/ImageBufferSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/ImageSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/ImageSourceSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/IntPointSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/IntRectSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/NativeImageSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/PathSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/PatternSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/PlatformContextSkia.cpp',
- '$PORT_DIR/platform/graphics/skia/SkiaUtils.cpp',
-
- '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
-
- '$PORT_DIR/svg/graphics/skia/RenderPathSkia.cpp',
- '$PORT_DIR/svg/graphics/skia/SkiaSupport.cpp',
- '$PORT_DIR/svg/graphics/skia/SVGPaintServerGradientSkia.cpp',
- '$PORT_DIR/svg/graphics/skia/SVGPaintServerPatternSkia.cpp',
- '$PORT_DIR/svg/graphics/skia/SVGPaintServerSkia.cpp',
- '$PORT_DIR/svg/graphics/skia/SVGResourceFilterSkia.cpp',
- '$PORT_DIR/svg/graphics/skia/SVGResourceMaskerSkia.cpp',
-
- '$PORT_DIR/platform/image-decoders/bmp/BMPImageDecoder.cpp',
- '$PORT_DIR/platform/image-decoders/bmp/BMPImageReader.cpp',
- '$PORT_DIR/platform/image-decoders/gif/GIFImageDecoder.cpp',
- '$PORT_DIR/platform/image-decoders/gif/GIFImageReader.cpp',
- '$PORT_DIR/platform/image-decoders/ico/ICOImageDecoder.cpp',
- '$PORT_DIR/platform/image-decoders/jpeg/JPEGImageDecoder.cpp',
- '$PORT_DIR/platform/image-decoders/png/PNGImageDecoder.cpp',
- '$PORT_DIR/platform/image-decoders/xbm/XBMImageDecoder.cpp',
-
- '$PORT_DIR/platform/network/chromium/AuthenticationChallengeChromium.cpp',
- '$PORT_DIR/platform/network/chromium/CookieJarChromium.cpp',
- '$PORT_DIR/platform/network/chromium/DNSChromium.cpp',
- '$PORT_DIR/platform/network/chromium/NetworkStateNotifierChromium.cpp',
-
- '$PORT_DIR/plugins/chromium/PluginDataChromium.cpp',
-]
-
-if env.Bit('windows'):
- # Windows specific implementations.
- input_files.extend([
- '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp',
- '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp',
- '$PORT_DIR/platform/chromium/SoundChromiumWin.cpp',
-
- '$PORT_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/IconChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp',
- '$PORT_DIR/platform/graphics/chromium/UniscribeHelper.cpp',
- '$PORT_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp',
-
- '$PORT_DIR/rendering/RenderThemeWin.cpp',
- ])
-
-if env.Bit('linux'):
- # Linux specific implementations.
- input_files.extend([
- '$PORT_DIR/platform/chromium/FileSystemChromiumLinux.cpp',
- '$PORT_DIR/platform/chromium/gtk2drawing.c',
- '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp',
- '$PORT_DIR/platform/chromium/RenderThemeGtk.cpp',
- '$PORT_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp',
- '$PORT_DIR/platform/chromium/SoundChromiumPosix.cpp',
-
- '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp',
- '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
- '$PORT_DIR/platform/graphics/chromium/IconChromiumLinux.cpp',
- '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp',
-
- '$PORT_DIR/platform/graphics/skia/GdkSkia.cc',
- ])
-
- # Remove from the list files that haven't yet been made portable to Linux.
- to_be_ported_files = [
- '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
- ]
- input_files = list(set(input_files) - set(to_be_ported_files))
-
-if env.Bit('mac'):
- # Mac specific implementations.
- input_files.extend([
- '$PORT_DIR/bridge/mac/FrameMac.mm',
- '$PORT_DIR/page/EventHandlerMac.mm',
- '$PORT_DIR/page/WebCoreFrameBridge.mm',
- '$PORT_DIR/platform/GKURLMac.mm',
- '$PORT_DIR/platform/PluginStubsMac.cpp',
- '$PORT_DIR/platform/mac/DragDataMac.mm',
- '$PORT_DIR/platform/graphics/mac/FontCacheMacPending.cpp',
- '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasMac.cpp',
- '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceMac.cpp',
- '$PORT_DIR/rendering/RenderThemeMac.mm',
- ])
-
- # Remove from the list files that haven't yet been made portable to Mac.
- to_be_ported_files = [
- '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp',
- '$PORT_DIR/page/chromium/EventHandlerChromium.cpp',
- '$PORT_DIR/platform/chromium/CursorChromium.cpp',
- '$PORT_DIR/platform/chromium/DragDataChromium.cpp',
- '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp',
- '$PORT_DIR/platform/chromium/WidgetChromium.cpp',
- '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp',
- '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
- '$PORT_DIR/platform/graphics/skia/ImageSkia.cpp',
- ]
- input_files = list(set(input_files) - set(to_be_ported_files))
-
-if env.get('KJS'):
- input_files.extend([
- '$PORT_DIR/bridge/KJSBridge.cpp',
- '$PORT_DIR/bridge/ScriptControllerKJS.cpp',
- ])
-else:
- input_files.extend([
- '$PORT_DIR/bindings/v8/ScriptController.cpp',
- ])
-
-env.ChromeStaticLibrary("port", input_files)
+# Copyright (c) 2006-2008 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()
+
+if env.Bit('windows'):
+ env.Prepend(
+ CCFLAGS = [
+ '/TP',
+
+ '/wd4244',
+ '/wd4291',
+ '/wd4345',
+ '/wd4521',
+ '/wd4800',
+ ],)
+elif env.Bit('linux'):
+ env.Append(
+ # For the image readers and decoders:
+ CXXFLAGS = ["-Wno-sign-compare"],
+ LIBS = ['png'],
+ )
+
+input_files = [
+ '$PORT_DIR/bridge/chromium/PluginsChromium.cpp',
+
+ '$PORT_DIR/page/Location.cpp',
+ '$PORT_DIR/page/chromium/AccessibilityObjectChromium.cpp',
+ '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp',
+ '$PORT_DIR/page/chromium/DragControllerChromium.cpp',
+ '$PORT_DIR/page/chromium/EventHandlerChromium.cpp',
+ '$PORT_DIR/page/chromium/FrameChromium.cpp',
+
+ '$PORT_DIR/platform/GKURL.cpp',
+
+ '$PORT_DIR/platform/chromium/ChromiumDataObject.cpp',
+ '$PORT_DIR/platform/chromium/ClipboardChromium.cpp',
+ '$PORT_DIR/platform/chromium/ClipboardUtilitiesChromium.cpp',
+ '$PORT_DIR/platform/chromium/ContextMenuChromium.cpp',
+ '$PORT_DIR/platform/chromium/ContextMenuItemChromium.cpp',
+ '$PORT_DIR/platform/chromium/CursorChromium.cpp',
+ '$PORT_DIR/platform/chromium/DragDataChromium.cpp',
+ '$PORT_DIR/platform/chromium/DragImageChromium.cpp',
+ '$PORT_DIR/platform/chromium/EditorChromium.cpp',
+ '$PORT_DIR/platform/chromium/FileChooserChromium.cpp',
+ '$PORT_DIR/platform/chromium/FileSystemChromium.cpp',
+ '$PORT_DIR/platform/chromium/FramelessScrollView.cpp',
+ '$PORT_DIR/platform/chromium/Language.cpp',
+ '$PORT_DIR/platform/chromium/MimeTypeRegistryChromium.cpp',
+ '$PORT_DIR/platform/chromium/PasteboardChromium.cpp',
+ '$PORT_DIR/platform/chromium/PlatformKeyboardEventChromium.cpp',
+ '$PORT_DIR/platform/chromium/PlatformScreenChromium.cpp',
+ '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp',
+ '$PORT_DIR/platform/chromium/SearchPopupMenuChromium.cpp',
+ '$PORT_DIR/platform/chromium/SharedTimerChromium.cpp',
+ '$PORT_DIR/platform/chromium/SSLKeyGeneratorChromium.cpp',
+ '$PORT_DIR/platform/chromium/SystemTimeChromium.cpp',
+ '$PORT_DIR/platform/chromium/TemporaryLinkStubs.cpp',
+ '$PORT_DIR/platform/chromium/TextBoundariesChromium.cpp',
+ '$PORT_DIR/platform/chromium/TextBreakIteratorInternalICUChromium.cpp',
+ '$PORT_DIR/platform/chromium/WidgetChromium.cpp',
+ '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp',
+
+ '$PORT_DIR/platform/graphics/skia/AffineTransformSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/ColorSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/FloatPointSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/FloatRectSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/GradientSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/GraphicsContextSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/ImageBufferSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/ImageSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/ImageSourceSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/IntPointSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/IntRectSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/NativeImageSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/PathSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/PatternSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/PlatformContextSkia.cpp',
+ '$PORT_DIR/platform/graphics/skia/SkiaUtils.cpp',
+
+ '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
+
+ '$PORT_DIR/svg/graphics/skia/RenderPathSkia.cpp',
+ '$PORT_DIR/svg/graphics/skia/SkiaSupport.cpp',
+ '$PORT_DIR/svg/graphics/skia/SVGPaintServerGradientSkia.cpp',
+ '$PORT_DIR/svg/graphics/skia/SVGPaintServerPatternSkia.cpp',
+ '$PORT_DIR/svg/graphics/skia/SVGPaintServerSkia.cpp',
+ '$PORT_DIR/svg/graphics/skia/SVGResourceFilterSkia.cpp',
+ '$PORT_DIR/svg/graphics/skia/SVGResourceMaskerSkia.cpp',
+
+ '$PORT_DIR/platform/image-decoders/bmp/BMPImageDecoder.cpp',
+ '$PORT_DIR/platform/image-decoders/bmp/BMPImageReader.cpp',
+ '$PORT_DIR/platform/image-decoders/gif/GIFImageDecoder.cpp',
+ '$PORT_DIR/platform/image-decoders/gif/GIFImageReader.cpp',
+ '$PORT_DIR/platform/image-decoders/ico/ICOImageDecoder.cpp',
+ '$PORT_DIR/platform/image-decoders/jpeg/JPEGImageDecoder.cpp',
+ '$PORT_DIR/platform/image-decoders/png/PNGImageDecoder.cpp',
+ '$PORT_DIR/platform/image-decoders/xbm/XBMImageDecoder.cpp',
+
+ '$PORT_DIR/platform/network/chromium/AuthenticationChallengeChromium.cpp',
+ '$PORT_DIR/platform/network/chromium/CookieJarChromium.cpp',
+ '$PORT_DIR/platform/network/chromium/DNSChromium.cpp',
+ '$PORT_DIR/platform/network/chromium/NetworkStateNotifierChromium.cpp',
+
+ '$PORT_DIR/plugins/chromium/PluginDataChromium.cpp',
+]
+
+if env.Bit('windows'):
+ # Windows specific implementations.
+ input_files.extend([
+ '$PORT_DIR/platform/chromium/FileSystemChromiumWin.cpp',
+ '$PORT_DIR/platform/chromium/ScrollBarThemeChromiumWin.cpp',
+ '$PORT_DIR/platform/chromium/SoundChromiumWin.cpp',
+
+ '$PORT_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/IconChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp',
+ '$PORT_DIR/platform/graphics/chromium/UniscribeHelper.cpp',
+ '$PORT_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp',
+
+ '$PORT_DIR/rendering/RenderThemeWin.cpp',
+ ])
+
+if env.Bit('linux'):
+ # Linux specific implementations.
+ input_files.extend([
+ '$PORT_DIR/platform/chromium/FileSystemChromiumLinux.cpp',
+ '$PORT_DIR/platform/chromium/gtk2drawing.c',
+ '$PORT_DIR/platform/chromium/KeyCodeConversionGtk.cpp',
+ '$PORT_DIR/platform/chromium/RenderThemeGtk.cpp',
+ '$PORT_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp',
+ '$PORT_DIR/platform/chromium/SoundChromiumPosix.cpp',
+
+ '$PORT_DIR/platform/graphics/chromium/FontCacheLinux.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontLinux.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp',
+ '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
+ '$PORT_DIR/platform/graphics/chromium/IconChromiumLinux.cpp',
+ '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp',
+
+ '$PORT_DIR/platform/graphics/skia/GdkSkia.cc',
+ ])
+
+ # Remove from the list files that haven't yet been made portable to Linux.
+ to_be_ported_files = [
+ '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
+ ]
+ input_files = list(set(input_files) - set(to_be_ported_files))
+
+if env.Bit('mac'):
+ # Mac specific implementations.
+ input_files.extend([
+ '$PORT_DIR/bridge/mac/FrameMac.mm',
+ '$PORT_DIR/page/EventHandlerMac.mm',
+ '$PORT_DIR/page/WebCoreFrameBridge.mm',
+ '$PORT_DIR/platform/GKURLMac.mm',
+ '$PORT_DIR/platform/PluginStubsMac.cpp',
+ '$PORT_DIR/platform/mac/DragDataMac.mm',
+ '$PORT_DIR/platform/graphics/mac/FontCacheMacPending.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasMac.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceMac.cpp',
+ '$PORT_DIR/rendering/RenderThemeMac.mm',
+ ])
+
+ # Remove from the list files that haven't yet been made portable to Mac.
+ to_be_ported_files = [
+ '$PORT_DIR/page/chromium/AXObjectCacheChromium.cpp',
+ '$PORT_DIR/page/chromium/EventHandlerChromium.cpp',
+ '$PORT_DIR/platform/chromium/CursorChromium.cpp',
+ '$PORT_DIR/platform/chromium/DragDataChromium.cpp',
+ '$PORT_DIR/platform/chromium/PopupMenuChromium.cpp',
+ '$PORT_DIR/platform/chromium/WidgetChromium.cpp',
+ '$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp',
+ '$PORT_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp',
+ '$PORT_DIR/platform/graphics/skia/ImageSkia.cpp',
+ ]
+ input_files = list(set(input_files) - set(to_be_ported_files))
+
+if env.get('KJS'):
+ input_files.extend([
+ '$PORT_DIR/bridge/KJSBridge.cpp',
+ '$PORT_DIR/bridge/ScriptControllerKJS.cpp',
+ ])
+else:
+ input_files.extend([
+ '$PORT_DIR/bindings/v8/ScriptController.cpp',
+ ])
+
+env.ChromeStaticLibrary("port", input_files)
+
+env.ChromeMSVSProject('$WEBKIT_DIR/build/port/port.vcproj',
+ name = 'Port',
+ dependencies = [
+ '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
+ '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
+ ],
+ guid='{5597AD47-3494-4750-A235-4F9C2F864700}')
« no previous file with comments | « webkit/SConscript.javascriptcore_pcre ('k') | webkit/activex_shim/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698