Move to GYP-based project file generation (issue #48).

- Add cef_create_projects.bat to generate the CEF project files.
- Change include paths to be relative to the root CEF directory.
- Add patch_build configuration and build.patch to modify the Chromium build system for required CEF dependencies.
- Remove old .vcproj and .vsprops files.
- Eliminate use of precompiled headers.
- Commit generated project files (these will go away in the near future).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@50 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2009-10-02 17:59:38 +00:00
parent 8635aeb5cf
commit d7f7f45147
147 changed files with 1779 additions and 3151 deletions

341
cef.gyp Normal file
View File

@ -0,0 +1,341 @@
# Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
# reserved. Use of this source code is governed by a BSD-style license that
# can be found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'targets': [
{
'target_name': 'cefclient',
'type': 'executable',
'msvs_guid': '6617FED9-C5D4-4907-BF55-A90062A6683F',
'dependencies': [
'../third_party/npapi/npapi.gyp:npapi',
'libcef',
'libcef_dll_wrapper',
],
'defines': [
'USING_CEF_SHARED',
],
'include_dirs': [
'.',
'..',
],
'sources': [
'tests/cefclient/Resource.h',
'tests/cefclient/binding_test.cpp',
'tests/cefclient/binding_test.h',
'tests/cefclient/cefclient.cpp',
'tests/cefclient/cefclient.h',
'tests/cefclient/cefclient.ico',
'tests/cefclient/cefclient.rc',
'tests/cefclient/clientplugin.cpp',
'tests/cefclient/clientplugin.h',
'tests/cefclient/extension_test.cpp',
'tests/cefclient/extension_test.h',
'tests/cefclient/plugin_test.cpp',
'tests/cefclient/plugin_test.h',
'tests/cefclient/res/cefclient.ico',
'tests/cefclient/res/logo.jpg',
'tests/cefclient/res/logoball.jpg',
'tests/cefclient/res/small.ico',
'tests/cefclient/res/uiplugin.html',
'tests/cefclient/resource_util.cpp',
'tests/cefclient/resource_util.h',
'tests/cefclient/scheme_test.cpp',
'tests/cefclient/scheme_test.h',
'tests/cefclient/string_util.cpp',
'tests/cefclient/string_util.h',
'tests/cefclient/uiplugin.cpp',
'tests/cefclient/uiplugin.h',
'tests/cefclient/uiplugin_test.cpp',
'tests/cefclient/uiplugin_test.h',
],
'link_settings': {
'libraries': [
'-lcomctl32.lib',
'-lshlwapi.lib',
'-lrpcrt4.lib',
'-lopengl32.lib',
'-lglu32.lib',
],
},
'conditions': [
['OS=="win"', {
'msvs_settings': {
'VCLinkerTool': {
# Set /SUBSYSTEM:WINDOWS.
'SubSystem': '2',
'EntryPointSymbol' : 'wWinMainCRTStartup',
},
},
}],
],
},
{
'target_name': 'patcher',
'type': 'none',
'msvs_guid': 'A6D0953E-899E-4C60-AB6B-CAE75A44B8E6',
'actions': [
{
'action_name': 'patch_source',
'msvs_cygwin_shell': 0,
'inputs': [
'tools/patch_source.bat',
],
'outputs': [
'tools/patch_source.bat.output',
],
'action': ['', '<@(_inputs)'],
},
],
},
{
'target_name': 'libcef',
'type': 'shared_library',
'msvs_guid': 'C13650D5-CF1A-4259-BE45-B1EBA6280E47',
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:base_gfx',
'../breakpad/breakpad.gyp:breakpad_handler',
'../build/temp_gyp/googleurl.gyp:googleurl',
'../media/media.gyp:media',
'../net/net.gyp:net',
'../net/net.gyp:net_resources',
'../printing/printing.gyp:printing',
'../sdch/sdch.gyp:sdch',
'../skia/skia.gyp:skia',
'../third_party/bzip2/bzip2.gyp:bzip2',
'../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
'../third_party/libjpeg/libjpeg.gyp:libjpeg',
'../third_party/libpng/libpng.gyp:libpng',
'../third_party/libxslt/libxslt.gyp:libxslt',
'../third_party/modp_b64/modp_b64.gyp:modp_b64',
'../third_party/zlib/zlib.gyp:zlib',
'../webkit/WebCore.gyp:webcore',
'../webkit/WebKit.gyp:appcache',
'../webkit/WebKit.gyp:glue',
'../webkit/WebKit.gyp:webkit',
'../webkit/WebKit.gyp:webkit_resources',
'../webkit/WebKit.gyp:webkit_strings',
'../webkit/default_plugin/default_plugin.gyp:default_plugin',
'../webkit/javascriptcore.gyp:pcre',
'../webkit/javascriptcore.gyp:wtf',
'libcef_static',
],
'defines': [
'BUILDING_CEF_SHARED',
],
'include_dirs': [
'.',
'..',
],
'sources': [
'$(OutDir)/obj/global_intermediate/webkit/webkit_resources.rc',
'$(OutDir)/obj/global_intermediate/webkit/webkit_strings_en-US.rc',
'include/cef.h',
'include/cef_capi.h',
'include/cef_export.h',
'include/cef_nplugin.h',
'include/cef_nplugin_capi.h',
'include/cef_ptr.h',
'include/cef_string.h',
'include/cef_string_list.h',
'include/cef_string_map.h',
'include/cef_types.h',
'include/cef_types_win.h',
'include/cef_win.h',
'libcef_dll/cef_logging.h',
'libcef_dll/cpptoc/browser_cpptoc.cc',
'libcef_dll/cpptoc/browser_cpptoc.h',
'libcef_dll/cpptoc/cpptoc.h',
'libcef_dll/cpptoc/frame_cpptoc.cc',
'libcef_dll/cpptoc/frame_cpptoc.h',
'libcef_dll/cpptoc/post_data_cpptoc.cc',
'libcef_dll/cpptoc/post_data_cpptoc.h',
'libcef_dll/cpptoc/post_data_element_cpptoc.cc',
'libcef_dll/cpptoc/post_data_element_cpptoc.h',
'libcef_dll/cpptoc/request_cpptoc.cc',
'libcef_dll/cpptoc/request_cpptoc.h',
'libcef_dll/cpptoc/stream_reader_cpptoc.cc',
'libcef_dll/cpptoc/stream_reader_cpptoc.h',
'libcef_dll/cpptoc/stream_writer_cpptoc.cc',
'libcef_dll/cpptoc/stream_writer_cpptoc.h',
'libcef_dll/cpptoc/v8value_cpptoc.cc',
'libcef_dll/cpptoc/v8value_cpptoc.h',
'libcef_dll/ctocpp/ctocpp.h',
'libcef_dll/ctocpp/handler_ctocpp.cc',
'libcef_dll/ctocpp/handler_ctocpp.h',
'libcef_dll/ctocpp/read_handler_ctocpp.cc',
'libcef_dll/ctocpp/read_handler_ctocpp.h',
'libcef_dll/ctocpp/scheme_handler_ctocpp.cc',
'libcef_dll/ctocpp/scheme_handler_ctocpp.h',
'libcef_dll/ctocpp/scheme_handler_factory_ctocpp.cc',
'libcef_dll/ctocpp/scheme_handler_factory_ctocpp.h',
'libcef_dll/ctocpp/v8handler_ctocpp.cc',
'libcef_dll/ctocpp/v8handler_ctocpp.h',
'libcef_dll/ctocpp/write_handler_ctocpp.cc',
'libcef_dll/ctocpp/write_handler_ctocpp.h',
'libcef_dll/libcef_dll.cc',
'libcef_dll/libcef_dll.rc',
'libcef_dll/resource.h',
'libcef_dll/transfer_util.cpp',
'libcef_dll/transfer_util.h',
],
},
{
'target_name': 'libcef_dll_wrapper',
'type': 'static_library',
'msvs_guid': 'A9D6DC71-C0DC-4549-AEA0-3B15B44E86A9',
'dependencies': [
'../third_party/npapi/npapi.gyp:npapi',
'libcef',
],
'defines': [
'USING_CEF_SHARED',
],
'include_dirs': [
'.',
'..',
],
'sources': [
'libcef_dll/cef_logging.h',
'libcef_dll/cpptoc/cpptoc.h',
'libcef_dll/cpptoc/handler_cpptoc.cc',
'libcef_dll/cpptoc/handler_cpptoc.h',
'libcef_dll/cpptoc/read_handler_cpptoc.cc',
'libcef_dll/cpptoc/read_handler_cpptoc.h',
'libcef_dll/cpptoc/scheme_handler_cpptoc.cc',
'libcef_dll/cpptoc/scheme_handler_cpptoc.h',
'libcef_dll/cpptoc/scheme_handler_factory_cpptoc.cc',
'libcef_dll/cpptoc/scheme_handler_factory_cpptoc.h',
'libcef_dll/cpptoc/v8handler_cpptoc.cc',
'libcef_dll/cpptoc/v8handler_cpptoc.h',
'libcef_dll/cpptoc/write_handler_cpptoc.cc',
'libcef_dll/cpptoc/write_handler_cpptoc.h',
'libcef_dll/ctocpp/browser_ctocpp.cc',
'libcef_dll/ctocpp/browser_ctocpp.h',
'libcef_dll/ctocpp/ctocpp.h',
'libcef_dll/ctocpp/frame_ctocpp.cc',
'libcef_dll/ctocpp/frame_ctocpp.h',
'libcef_dll/ctocpp/post_data_ctocpp.cc',
'libcef_dll/ctocpp/post_data_ctocpp.h',
'libcef_dll/ctocpp/post_data_element_ctocpp.cc',
'libcef_dll/ctocpp/post_data_element_ctocpp.h',
'libcef_dll/ctocpp/request_ctocpp.cc',
'libcef_dll/ctocpp/request_ctocpp.h',
'libcef_dll/ctocpp/stream_reader_ctocpp.cc',
'libcef_dll/ctocpp/stream_reader_ctocpp.h',
'libcef_dll/ctocpp/stream_writer_ctocpp.cc',
'libcef_dll/ctocpp/stream_writer_ctocpp.h',
'libcef_dll/ctocpp/v8value_ctocpp.cc',
'libcef_dll/ctocpp/v8value_ctocpp.h',
'libcef_dll/transfer_util.cpp',
'libcef_dll/transfer_util.h',
'libcef_dll/wrapper/libcef_dll_wrapper.cc',
],
},
{
'target_name': 'libcef_static',
'type': 'static_library',
'msvs_guid': 'FA39524D-3067-4141-888D-28A86C66F2B9',
'defines': [
'BUILDING_CEF_SHARED',
],
'include_dirs': [
'.',
'..',
],
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:base_gfx',
'../breakpad/breakpad.gyp:breakpad_handler',
'../build/temp_gyp/googleurl.gyp:googleurl',
'../media/media.gyp:media',
'../net/net.gyp:net',
'../net/net.gyp:net_resources',
'../printing/printing.gyp:printing',
'../sdch/sdch.gyp:sdch',
'../skia/skia.gyp:skia',
'../third_party/bzip2/bzip2.gyp:bzip2',
'../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
'../third_party/libjpeg/libjpeg.gyp:libjpeg',
'../third_party/libpng/libpng.gyp:libpng',
'../third_party/libxslt/libxslt.gyp:libxslt',
'../third_party/modp_b64/modp_b64.gyp:modp_b64',
'../third_party/zlib/zlib.gyp:zlib',
'../webkit/WebCore.gyp:webcore',
'../webkit/WebKit.gyp:appcache',
'../webkit/WebKit.gyp:glue',
'../webkit/WebKit.gyp:webkit',
'../webkit/WebKit.gyp:webkit_resources',
'../webkit/WebKit.gyp:webkit_strings',
'../webkit/default_plugin/default_plugin.gyp:default_plugin',
'../webkit/javascriptcore.gyp:pcre',
'../webkit/javascriptcore.gyp:wtf',
],
'sources': [
'include/cef.h',
'include/cef_export.h',
'include/cef_nplugin.h',
'include/cef_ptr.h',
'include/cef_string.h',
'include/cef_string_list.h',
'include/cef_string_map.h',
'include/cef_types.h',
'include/cef_types_win.h',
'include/cef_win.h',
'libcef/browser_appcache_system.cc',
'libcef/browser_appcache_system.h',
'libcef/browser_drag_delegate.cc',
'libcef/browser_drag_delegate.h',
'libcef/browser_drop_delegate.cc',
'libcef/browser_drop_delegate.h',
'libcef/browser_impl.cc',
'libcef/browser_impl.h',
'libcef/browser_impl_win.cc',
'libcef/browser_navigation_controller.cc',
'libcef/browser_navigation_controller.h',
'libcef/browser_request_context.cc',
'libcef/browser_request_context.h',
'libcef/browser_resource_loader_bridge.cc',
'libcef/browser_resource_loader_bridge.h',
'libcef/browser_webkit_glue.cc',
'libcef/browser_webkit_glue.h',
'libcef/browser_webkit_glue_win.cc',
'libcef/browser_webkit_init.h',
'libcef/browser_webview_delegate.cc',
'libcef/browser_webview_delegate.h',
'libcef/browser_webview_delegate_win.cc',
'libcef/cef_string.c',
'libcef/cef_string_list.cc',
'libcef/cef_string_map.cc',
'libcef/context.cc',
'libcef/context.h',
'libcef/printing/print_settings.cc',
'libcef/printing/print_settings.h',
'libcef/printing/win_printing_context.cc',
'libcef/printing/win_printing_context.h',
'libcef/request_impl.cc',
'libcef/request_impl.h',
'libcef/scheme_impl.cc',
'libcef/simple_clipboard_impl.cc',
'libcef/stream_impl.cc',
'libcef/stream_impl.h',
'libcef/tracker.h',
'libcef/v8_impl.cc',
'libcef/v8_impl.h',
'libcef/webview_host.cc',
'libcef/webview_host.h',
'libcef/webwidget_host.cc',
'libcef/webwidget_host.h',
],
},
]
}

10
cef.gypi Normal file
View File

@ -0,0 +1,10 @@
# Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
# reserved. Use of this source code is governed by a BSD-style license that
# can be found in the LICENSE file.
{
'variables': {
# Directory for CEF source files.
'cef_directory' : '<!(echo %CEF_DIRECTORY%)',
},
}

1632
cef.sln

File diff suppressed because it is too large Load Diff

12
cef_create_projects.bat Normal file
View File

@ -0,0 +1,12 @@
@echo off
ECHO Patching build configuration files...
CALL tools\patch_build.bat
ECHO Generating project files...
call :SET_ENV %CD%
:GEN_PROJ
CALL ..\tools\gyp\gyp.bat cef.gyp -I ..\build\common.gypi -I cef.gypi
GOTO :END
:SET_ENV
SET CEF_DIRECTORY=%~n1
GOTO :GEN_PROJ
:END

76
cefclient.vcproj Normal file
View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject Keyword="Win32Proj" Name="cefclient" ProjectGUID="{6617FED9-C5D4-4907-BF55-A90062A6683F}" ProjectType="Visual C++" RootNamespace="cefclient" Version="8.00">
<Platforms>
<Platform Name="Win32"/>
</Platforms>
<ToolFiles/>
<Configurations>
<Configuration CharacterSet="1" ConfigurationType="1" InheritedPropertySheets="" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Debug|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories=".;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BasicRuntimeChecks="3" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeLibrary="1" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;.;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib comctl32.lib shlwapi.lib rpcrt4.lib opengl32.lib glu32.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" EntryPointSymbol="wWinMainCRTStartup" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="2" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).exe" SubSystem="2" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="1" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Release|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories=".;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;NVALGRIND" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;.;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;NVALGRIND"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib comctl32.lib shlwapi.lib rpcrt4.lib opengl32.lib glu32.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" EntryPointSymbol="wWinMainCRTStartup" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).exe" SubSystem="2" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="1" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Purify|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories=".;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="false" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;PURIFY;NO_TCMALLOC" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeLibrary="0" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;.;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;PURIFY;NO_TCMALLOC"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib comctl32.lib shlwapi.lib rpcrt4.lib opengl32.lib glu32.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" EnableCOMDATFolding="1" EntryPointSymbol="wWinMainCRTStartup" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).exe" SubSystem="2" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="1" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Release - no tcmalloc|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories=".;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;NO_TCMALLOC" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;.;..;..\third_party\npapi;..\third_party\npapi\bindings;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;USING_CEF_SHARED;NDEBUG;NO_TCMALLOC"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib comctl32.lib shlwapi.lib rpcrt4.lib opengl32.lib glu32.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" EntryPointSymbol="wWinMainCRTStartup" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).exe" SubSystem="2" TargetMachine="1"/>
</Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="cef.gyp"/>
<Filter Name="tests">
<Filter Name="cefclient">
<File RelativePath="tests\cefclient\clientplugin.h"/>
<File RelativePath="tests\cefclient\binding_test.h"/>
<File RelativePath="tests\cefclient\cefclient.ico"/>
<File RelativePath="tests\cefclient\cefclient.rc"/>
<File RelativePath="tests\cefclient\cefclient.cpp"/>
<File RelativePath="tests\cefclient\scheme_test.cpp"/>
<File RelativePath="tests\cefclient\scheme_test.h"/>
<File RelativePath="tests\cefclient\clientplugin.cpp"/>
<File RelativePath="tests\cefclient\uiplugin_test.h"/>
<File RelativePath="tests\cefclient\uiplugin.h"/>
<File RelativePath="tests\cefclient\resource_util.h"/>
<File RelativePath="tests\cefclient\plugin_test.h"/>
<File RelativePath="tests\cefclient\string_util.cpp"/>
<File RelativePath="tests\cefclient\string_util.h"/>
<File RelativePath="tests\cefclient\extension_test.cpp"/>
<File RelativePath="tests\cefclient\resource_util.cpp"/>
<File RelativePath="tests\cefclient\binding_test.cpp"/>
<File RelativePath="tests\cefclient\Resource.h"/>
<File RelativePath="tests\cefclient\cefclient.h"/>
<File RelativePath="tests\cefclient\uiplugin_test.cpp"/>
<File RelativePath="tests\cefclient\plugin_test.cpp"/>
<File RelativePath="tests\cefclient\uiplugin.cpp"/>
<File RelativePath="tests\cefclient\extension_test.h"/>
<Filter Name="res">
<File RelativePath="tests\cefclient\res\cefclient.ico"/>
<File RelativePath="tests\cefclient\res\logoball.jpg"/>
<File RelativePath="tests\cefclient\res\small.ico"/>
<File RelativePath="tests\cefclient\res\uiplugin.html"/>
<File RelativePath="tests\cefclient\res\logo.jpg"/>
</Filter>
</Filter>
</Filter>
</Files>
<Globals/>
</VisualStudioProject>

108
libcef.vcproj Normal file
View File

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject Keyword="Win32Proj" Name="libcef" ProjectGUID="{C13650D5-CF1A-4259-BE45-B1EBA6280E47}" ProjectType="Visual C++" RootNamespace="libcef" Version="8.00">
<Platforms>
<Platform Name="Win32"/>
</Platforms>
<ToolFiles/>
<Configurations>
<Configuration CharacterSet="1" ConfigurationType="2" InheritedPropertySheets="" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Debug|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories="..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BasicRuntimeChecks="3" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeLibrary="1" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib urlmon.lib winmm.lib urlmon.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="2" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" SubSystem="1" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="2" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Release|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories="..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;NVALGRIND" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;NVALGRIND"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib urlmon.lib winmm.lib urlmon.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" SubSystem="1" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="2" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Purify|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories="..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="false" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;PURIFY;NO_TCMALLOC" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeLibrary="0" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;PURIFY;NO_TCMALLOC"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib urlmon.lib winmm.lib urlmon.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" EnableCOMDATFolding="1" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" SubSystem="1" TargetMachine="1"/>
</Configuration>
<Configuration CharacterSet="1" ConfigurationType="2" InheritedPropertySheets="..\build\release.vsprops" IntermediateDirectory="$(OutDir)\obj\$(ProjectName)" Name="Release - no tcmalloc|Win32" OutputDirectory="$(SolutionDir)$(ConfigurationName)">
<Tool AdditionalIncludeDirectories="..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" AdditionalOptions="/MP" BufferSecurityCheck="true" DebugInformationFormat="3" DisableSpecificWarnings="4396;4503;4819" EnableFunctionLevelLinking="true" ExceptionHandling="0" MinimalRebuild="false" Name="VCCLCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;NO_TCMALLOC" ProgramDataBaseFileName="$(IntDir)\$(ProjectName)\vc80.pdb" RuntimeTypeInfo="false" WarnAsError="true" WarningLevel="3"/>
<Tool AdditionalIncludeDirectories="..;..\third_party\WebKit\WebCore\dom;..\third_party\icu\public\common;..\third_party\icu\public\i18n;.;..;..\breakpad\src;$(OutDir)\obj\global_intermediate\net;..\sdch\open-vcdiff\src;..\skia\config;..\third_party\skia\include\core;..\third_party\skia\include\effects;..\skia\ext;..\third_party\bzip2;..\third_party\ffmpeg\include;..\third_party\ffmpeg\include\win;..\third_party\libjpeg;..\third_party\libpng;..\third_party\libxslt;..\third_party\zlib;$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\obj\global_intermediate\webkit\bindings;..\third_party\WebKit\WebCore;..\third_party\WebKit\WebCore\accessibility;..\third_party\WebKit\WebCore\accessibility\chromium;..\third_party\WebKit\WebCore\bindings\v8;..\third_party\WebKit\WebCore\bindings\v8\custom;..\third_party\WebKit\WebCore\bridge;..\third_party\WebKit\WebCore\css;..\third_party\WebKit\WebCore\dom\default;..\third_party\WebKit\WebCore\editing;..\third_party\WebKit\WebCore\history;..\third_party\WebKit\WebCore\html;..\third_party\WebKit\WebCore\html\canvas;..\third_party\WebKit\WebCore\inspector;..\third_party\WebKit\WebCore\loader;..\third_party\WebKit\WebCore\loader\appcache;..\third_party\WebKit\WebCore\loader\archive;..\third_party\WebKit\WebCore\loader\icon;..\third_party\WebKit\WebCore\notifications;..\third_party\WebKit\WebCore\page;..\third_party\WebKit\WebCore\page\animation;..\third_party\WebKit\WebCore\page\chromium;..\third_party\WebKit\WebCore\platform;..\third_party\WebKit\WebCore\platform\animation;..\third_party\WebKit\WebCore\platform\chromium;..\third_party\WebKit\WebCore\platform\graphics;..\third_party\WebKit\WebCore\platform\graphics\chromium;..\third_party\WebKit\WebCore\platform\graphics\opentype;..\third_party\WebKit\WebCore\platform\graphics\skia;..\third_party\WebKit\WebCore\platform\graphics\transforms;..\third_party\WebKit\WebCore\platform\image-decoders;..\third_party\WebKit\WebCore\platform\image-decoders\bmp;..\third_party\WebKit\WebCore\platform\image-decoders\gif;..\third_party\WebKit\WebCore\platform\image-decoders\ico;..\third_party\WebKit\WebCore\platform\image-decoders\jpeg;..\third_party\WebKit\WebCore\platform\image-decoders\png;..\third_party\WebKit\WebCore\platform\image-decoders\skia;..\third_party\WebKit\WebCore\platform\image-decoders\xbm;..\third_party\WebKit\WebCore\platform\image-encoders\skia;..\third_party\WebKit\WebCore\platform\mock;..\third_party\WebKit\WebCore\platform\network;..\third_party\WebKit\WebCore\platform\network\chromium;..\third_party\WebKit\WebCore\platform\sql;..\third_party\WebKit\WebCore\platform\text;..\third_party\WebKit\WebCore\plugins;..\third_party\WebKit\WebCore\rendering;..\third_party\WebKit\WebCore\rendering\style;..\third_party\WebKit\WebCore\storage;..\third_party\WebKit\WebCore\svg;..\third_party\WebKit\WebCore\svg\animation;..\third_party\WebKit\WebCore\svg\graphics;..\third_party\WebKit\WebCore\workers;..\third_party\WebKit\WebCore\xml;..\third_party\WebKit\WebCore\page\win;..\third_party\WebKit\WebCore\platform\graphics\win;..\third_party\WebKit\WebCore\platform\text\win;..\third_party\WebKit\WebCore\platform\win;..\third_party\npapi;..\third_party\npapi\bindings;..\v8\include;..\third_party\WebKit\JavaScriptCore;..\third_party\WebKit\JavaScriptCore\wtf;..\third_party\WebKit\JavaScriptCore\os-win32;..\webkit\build\JavaScriptCore;..\third_party\platformsdk_win2008_6_1\files\Include;$(VSInstallDir)\VC\atlmfc\include" Culture="1033" Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;_HAS_TR1=0;__STDC_FORMAT_MACROS;CHROMIUM_BUILD;BUILDING_CEF_SHARED;U_STATIC_IMPLEMENTATION;CHROME_PNG_WRITE_SUPPORT;PNG_USER_CONFIG;LIBXSLT_STATIC;ENABLE_CHANNEL_MESSAGING=1;ENABLE_DATABASE=1;ENABLE_DATAGRID=0;ENABLE_OFFLINE_WEB_APPLICATIONS=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_DOM_STORAGE=1;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_NOTIFICATIONS=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SHARED_WORKERS=0;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;BUILDING_CHROMIUM__=1;USE_SYSTEM_MALLOC=1;__STD_C;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;CRASH=__debugbreak;NDEBUG;NO_TCMALLOC"/>
<Tool DLLDataFileName="dlldata.c" GenerateStublessProxies="true" HeaderFileName="$(InputName).h" InterfaceIdentifierFileName="$(InputName)_i.c" Name="VCMIDLTool" OutputDirectory="$(IntDir)" ProxyFileName="$(InputName)_p.c" TypeLibraryName="$(InputName).tlb"/>
<Tool AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/ignore:4221" Name="VCLibrarianTool"/>
<Tool AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib $(OutDir)/lib/avcodec-52.lib $(OutDir)/lib/avformat-52.lib $(OutDir)/lib/avutil-50.lib urlmon.lib winmm.lib urlmon.lib" AdditionalLibraryDirectories="../third_party/platformsdk_win2008_6_1/files/Lib" AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat" DelayLoadDLLs="dbghelp.dll;dwmapi.dll;uxtheme.dll;avcodec-52.dll;avformat-52.dll;avutil-50.dll" FixedBaseAddress="1" GenerateDebugInformation="true" ImportLibrary="$(OutDir)\lib\$(TargetName).lib" LinkIncremental="1" MapFileName="$(OutDir)\$(TargetName).map" Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" SubSystem="1" TargetMachine="1"/>
</Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="cef.gyp"/>
<Filter Name="include">
<File RelativePath="include\cef_win.h"/>
<File RelativePath="include\cef_string_map.h"/>
<File RelativePath="include\cef_export.h"/>
<File RelativePath="include\cef_capi.h"/>
<File RelativePath="include\cef_nplugin_capi.h"/>
<File RelativePath="include\cef.h"/>
<File RelativePath="include\cef_ptr.h"/>
<File RelativePath="include\cef_string_list.h"/>
<File RelativePath="include\cef_nplugin.h"/>
<File RelativePath="include\cef_string.h"/>
<File RelativePath="include\cef_types.h"/>
<File RelativePath="include\cef_types_win.h"/>
</Filter>
<Filter Name="libcef_dll">
<File RelativePath="libcef_dll\transfer_util.cpp"/>
<File RelativePath="libcef_dll\libcef_dll.rc"/>
<File RelativePath="libcef_dll\transfer_util.h"/>
<File RelativePath="libcef_dll\libcef_dll.cc"/>
<File RelativePath="libcef_dll\cef_logging.h"/>
<File RelativePath="libcef_dll\resource.h"/>
<Filter Name="cpptoc">
<File RelativePath="libcef_dll\cpptoc\post_data_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\browser_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\stream_writer_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\post_data_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\stream_writer_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\post_data_element_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\v8value_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\v8value_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\stream_reader_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\request_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\browser_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\frame_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\request_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\stream_reader_cpptoc.cc"/>
<File RelativePath="libcef_dll\cpptoc\post_data_element_cpptoc.h"/>
<File RelativePath="libcef_dll\cpptoc\frame_cpptoc.h"/>
</Filter>
<Filter Name="ctocpp">
<File RelativePath="libcef_dll\ctocpp\write_handler_ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\v8handler_ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\v8handler_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\scheme_handler_ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\read_handler_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\handler_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\write_handler_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\handler_ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\scheme_handler_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\scheme_handler_factory_ctocpp.cc"/>
<File RelativePath="libcef_dll\ctocpp\scheme_handler_factory_ctocpp.h"/>
<File RelativePath="libcef_dll\ctocpp\read_handler_ctocpp.h"/>
</Filter>
</Filter>
<Filter Name="$(OutDir)">
<Filter Name="obj">
<Filter Name="global_intermediate">
<Filter Name="webkit">
<File RelativePath="$(OutDir)\obj\global_intermediate\webkit\webkit_strings_en-US.rc"/>
<File RelativePath="$(OutDir)\obj\global_intermediate\webkit\webkit_resources.rc"/>
</Filter>
</Filter>
</Filter>
</Filter>
</Files>
<Globals/>
</VisualStudioProject>

View File

@ -2,7 +2,6 @@
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
#include "precompiled_libcef.h"
#include "browser_appcache_system.h"
#include "base/lock.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "browser_drag_delegate.h"
#include "webkit/api/public/WebPoint.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "browser_drop_delegate.h"
#include "webkit/api/public/WebDragData.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "context.h"
#include "browser_impl.h"
#include "request_impl.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "context.h"
#include "browser_impl.h"
#include "browser_webkit_glue.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "browser_navigation_controller.h"
#include "browser_impl.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "browser_request_context.h"
#include "build/build_config.h"

View File

@ -31,7 +31,6 @@
// perform URL loads. See renderer/resource_dispatcher.h for details on an
// alternate implementation that defers fetching to another process.
#include "precompiled_libcef.h"
#include "browser_appcache_system.h"
#include "browser_resource_loader_bridge.h"
#include "browser_request_context.h"

View File

@ -3,8 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "base/compiler_specific.h"
#include "base/logging.h"

View File

@ -3,8 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include <atlcore.h>
#include <atlbase.h>
#include <commdlg.h>

View File

@ -7,7 +7,6 @@
// as the WebViewDelegate for the BrowserWebHost. The host is expected to
// have initialized a MessageLoop before these methods are called.
#include "precompiled_libcef.h"
#include "config.h"
#undef LOG
#include "browser_webview_delegate.h"

View File

@ -7,7 +7,6 @@
// as the WebViewDelegate for the BrowserWebHost. The host is expected to
// have initialized a MessageLoop before these methods are called.
#include "precompiled_libcef.h"
#include "browser_webview_delegate.h"
#include "browser_drag_delegate.h"
#include "browser_drop_delegate.h"

View File

@ -2,7 +2,6 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "include/cef_string_list.h"
#include "base/logging.h"
#include <vector>

View File

@ -2,7 +2,6 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "include/cef_string_map.h"
#include "base/logging.h"
#include <map>

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "context.h"
#include "browser_impl.h"
#include "browser_resource_loader_bridge.h"

View File

@ -1,431 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="libcef"
ProjectGUID="{FA39524D-3067-4141-888D-28A86C66F2B9}"
RootNamespace="libcef"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
ConfigurationType="4"
InheritedPropertySheets="$(SolutionDir)..\build\debug.vsprops;.\libcef.vsprops"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="2"
PrecompiledHeaderThrough="precompiled_libcef.h"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLibrarianTool"
OutputFile="$(OutDir)\lib\libcef_static.lib"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
ConfigurationType="4"
InheritedPropertySheets="$(SolutionDir)..\build\release.vsprops;.\libcef.vsprops"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="2"
PrecompiledHeaderThrough="precompiled_libcef.h"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLibrarianTool"
OutputFile="$(OutDir)\lib\libcef_static.lib"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="printing"
>
<File
RelativePath=".\printing\print_settings.cc"
>
</File>
<File
RelativePath=".\printing\print_settings.h"
>
</File>
<File
RelativePath=".\printing\win_printing_context.cc"
>
</File>
<File
RelativePath=".\printing\win_printing_context.h"
>
</File>
</Filter>
<Filter
Name="include"
>
<File
RelativePath="..\include\cef.h"
>
</File>
<File
RelativePath="..\include\cef_export.h"
>
</File>
<File
RelativePath="..\include\cef_nplugin.h"
>
</File>
<File
RelativePath="..\include\cef_ptr.h"
>
</File>
<File
RelativePath="..\include\cef_string.h"
>
</File>
<File
RelativePath="..\include\cef_string_list.h"
>
</File>
<File
RelativePath="..\include\cef_string_map.h"
>
</File>
<File
RelativePath="..\include\cef_types.h"
>
</File>
<File
RelativePath="..\include\cef_types_win.h"
>
</File>
<File
RelativePath="..\include\cef_win.h"
>
</File>
</Filter>
<File
RelativePath=".\browser_appcache_system.cc"
>
</File>
<File
RelativePath=".\browser_appcache_system.h"
>
</File>
<File
RelativePath=".\browser_drag_delegate.cc"
>
</File>
<File
RelativePath=".\browser_drag_delegate.h"
>
</File>
<File
RelativePath=".\browser_drop_delegate.cc"
>
</File>
<File
RelativePath=".\browser_drop_delegate.h"
>
</File>
<File
RelativePath=".\browser_impl.cc"
>
</File>
<File
RelativePath=".\browser_impl.h"
>
</File>
<File
RelativePath=".\browser_impl_win.cc"
>
</File>
<File
RelativePath=".\browser_navigation_controller.cc"
>
</File>
<File
RelativePath=".\browser_navigation_controller.h"
>
</File>
<File
RelativePath=".\browser_request_context.cc"
>
</File>
<File
RelativePath=".\browser_request_context.h"
>
</File>
<File
RelativePath=".\browser_resource_loader_bridge.cc"
>
</File>
<File
RelativePath=".\browser_resource_loader_bridge.h"
>
</File>
<File
RelativePath=".\browser_webkit_glue.cc"
>
</File>
<File
RelativePath=".\browser_webkit_glue.h"
>
</File>
<File
RelativePath=".\browser_webkit_glue_win.cc"
>
</File>
<File
RelativePath=".\browser_webkit_init.h"
>
</File>
<File
RelativePath=".\browser_webview_delegate.cc"
>
</File>
<File
RelativePath=".\browser_webview_delegate.h"
>
</File>
<File
RelativePath=".\browser_webview_delegate_win.cc"
>
</File>
<File
RelativePath=".\cef_string.c"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
UsePrecompiledHeader="0"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
UsePrecompiledHeader="0"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cef_string_list.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cef_string_map.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="BUILDING_CEF_SHARED"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\context.cc"
>
</File>
<File
RelativePath=".\context.h"
>
</File>
<File
RelativePath=".\precompiled_libcef.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="1"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="1"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\precompiled_libcef.h"
>
</File>
<File
RelativePath=".\request_impl.cc"
>
</File>
<File
RelativePath=".\request_impl.h"
>
</File>
<File
RelativePath=".\scheme_impl.cc"
>
</File>
<File
RelativePath=".\simple_clipboard_impl.cc"
>
</File>
<File
RelativePath=".\stream_impl.cc"
>
</File>
<File
RelativePath=".\stream_impl.h"
>
</File>
<File
RelativePath=".\tracker.h"
>
</File>
<File
RelativePath=".\v8_impl.cc"
>
</File>
<File
RelativePath=".\v8_impl.h"
>
</File>
<File
RelativePath=".\webview_host.cc"
>
</File>
<File
RelativePath=".\webview_host.h"
>
</File>
<File
RelativePath=".\webwidget_host.cc"
>
</File>
<File
RelativePath=".\webwidget_host.h"
>
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>

View File

@ -1,22 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="libcef"
InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\third_party\libpng\using_libpng.vsprops;$(SolutionDir)..\breakpad\using_breakpad.vsprops;$(SolutionDir)..\third_party\libxml\build\using_libxml.vsprops;$(SolutionDir)..\third_party\npapi\using_npapi.vsprops;$(SolutionDir)..\skia\using_skia.vsprops;$(SolutionDir)..\third_party\ffmpeg\using_ffmpeg.vsprops;.\libcef_webkit.vsprops"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="&quot;$(OutDir)\obj\WebKit&quot;;&quot;$(OutDir)\obj\global_intermediate\webkit&quot;;&quot;$(IntDir)\grit_derived_sources&quot;;&quot;$(SolutionDir)&quot;;&quot;$(IntDir)\..\localized_strings&quot;;&quot;$(SolutionDir)..\webkit\port\bridge&quot;;&quot;$(SolutionDir)..\webkit\port\platform&quot;;&quot;$(SolutionDir)..\webkit\port\platform\network&quot;;&quot;$(SolutionDir)..\webkit\glue&quot;;&quot;$(SolutionDir)..\third_party\webkit\src\&quot;;&quot;$(OutDir)\obj\WebCore\JavaScriptHeaders&quot;;&quot;$(OutDir)&quot;"
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="comctl32.lib shlwapi.lib rpcrt4.lib winmm.lib urlmon.lib"
AdditionalLibraryDirectories="&quot;$(OutDir)&quot;"
/>
<Tool
Name="VCResourceCompilerTool"
AdditionalIncludeDirectories="&quot;$(SolutionDir)&quot;;&quot;$(IntDir)\..\&quot;"
/>
</VisualStudioPropertySheet>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="webkit_common"
InheritedPropertySheets=".\libcef_webkit_includes.vsprops;.\libcef_webkit_defines.vsprops;.\libcef_webkit_v8bindings.vsprops;$(SolutionDir)..\third_party\npapi\using_npapi.vsprops;$(SolutionDir)..\skia\using_skia.vsprops;$(SolutionDir)..\build\external_code.vsprops;$(SolutionDir)..\third_party\icu\build\using_icu.vsprops"
>
</VisualStudioPropertySheet>

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="libcef_webkit_defines"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="ENABLE_DATABASE=1;ENABLE_DASHBOARD_SUPPORT=0;ENABLE_JAVASCRIPT_DEBUGGER=0;ENABLE_JSC_MULTIPLE_THREADS=0;ENABLE_ICONDATABASE=0;ENABLE_XSLT=1;ENABLE_XPATH=1;ENABLE_SVG=1;ENABLE_SVG_ANIMATION=1;ENABLE_SVG_AS_IMAGE=1;ENABLE_SVG_USE=1;ENABLE_SVG_FOREIGN_OBJECT=1;ENABLE_SVG_FONTS=1;ENABLE_VIDEO=1;ENABLE_WORKERS=1;WEBCORE_NAVIGATOR_PLATFORM=&quot;\&quot;Win32\&quot;&quot;;USE_GOOGLE_URL_LIBRARY;USE_SYSTEM_MALLOC=1;CRASH=__debugbreak;BUILDING_CHROMIUM__=1"
/>
</VisualStudioPropertySheet>

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="webkit_common_includes"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="&quot;$(OutDir)\obj\WebCore&quot;;&quot;$(OutDir)\obj\WebCore\JavaScriptHeaders&quot;;&quot;$(OutDir)\obj\WebCore\JavaScriptHeaders\JavaScriptCore&quot;;&quot;$(SolutionDir)..\webkit\pending\&quot;;&quot;$(SolutionDir)..\webkit\port\platform&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\bmp&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\gif&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\ico&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\jpeg&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\png&quot;;&quot;$(SolutionDir)..\webkit\port\platform\image-decoders\xbm&quot;;&quot;$(SolutionDir)..\webkit&quot;;&quot;$(SolutionDir)..\webkit\build&quot;;&quot;$(ProjectDir)&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\bindings\v8&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\bindings\v8\custom&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\bridge&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\bridge\c&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\css&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\dom&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\editing&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\history&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\html&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\loader&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\loader\appcache&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\loader\archive&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\loader\icon&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\page&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\page\animation&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\text&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\graphics&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\graphics\chromium&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\svg\graphics&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\network&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\sql&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\rendering&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\rendering\style&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\storage&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\xml&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\os-win32&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\wtf&quot;;&quot;$(SolutionDir)..\third_party\WebKit\JavaScriptCore&quot;;&quot;$(SolutionDir)..\third_party\WebKit\JavaScriptCore\wtf&quot;;&quot;$(SolutionDir)..\third_party\WebKit\JavaScriptCore\os-win32&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\svg&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\svg\animation&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\svg\graphics\filters&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\plugins&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\inspector&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\chromium&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\graphics\skia&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\network\chromium&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\animation&quot;;&quot;$(SolutionDir)..\third_party\WebKit\WebCore\platform\graphics\transforms&quot;;&quot;$(SolutionDir)..\third_party\sqlite&quot;;&quot;$(SDKIncludes)&quot;;&quot;$(IntDir)\..\WebCore\DerivedSources&quot;;"
/>
</VisualStudioPropertySheet>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="libcef_webkit_v8bindings"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="$(SolutionDir)..\v8\include;$(IntDir)\..\V8Bindings\DerivedSources;$(IntDir)\..\V8Bindings\SharedSources;$(SolutionDir)..\webkit\port\bindings\v8;"
PreprocessorDefinitions="_SCL_SECURE_NO_WARNINGS;CRASH=__debugbreak"
/>
</VisualStudioPropertySheet>

View File

@ -1,5 +0,0 @@
// Copyright (c) 2008 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"

View File

@ -1,7 +0,0 @@
// Copyright (c) 2008 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include <string>
#include <map>
#include <vector>

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "print_settings.h"
#include "base/atomic_sequence_num.h"

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "win_printing_context.h"
#include <winspool.h>

View File

@ -2,7 +2,6 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "request_impl.h"
#include "base/logging.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "base/lazy_instance.h"
#include "base/message_loop.h"
#include "base/string_util.h"

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "webkit/glue/webkit_glue.h"
#include <string>

View File

@ -2,7 +2,6 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "stream_impl.h"
#include "base/logging.h"

View File

@ -2,7 +2,6 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "v8_impl.h"
#include "context.h"
#include "tracker.h"

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "webview_host.h"
#include "browser_webview_delegate.h"

View File

@ -3,7 +3,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "precompiled_libcef.h"
#include "webwidget_host.h"
#include "base/gfx/platform_canvas.h"

View File

@ -5,9 +5,9 @@
#ifndef _BASE_CPPTOC_H
#define _BASE_CPPTOC_H
#include "cef.h"
#include "cef_capi.h"
#include "../cef_logging.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cef_logging.h"
// CefCppToC implementation for CefBase.

View File

@ -10,10 +10,9 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/browser_cpptoc.h"
#include "cpptoc/frame_cpptoc.h"
#include "ctocpp/handler_ctocpp.h"
#include "libcef_dll/cpptoc/browser_cpptoc.h"
#include "libcef_dll/cpptoc/frame_cpptoc.h"
#include "libcef_dll/ctocpp/handler_ctocpp.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.
@ -32,7 +31,7 @@ CEF_EXPORT int cef_browser_create(cef_window_info_t* windowInfo, int popup,
if(url)
urlStr = url;
return CefBrowser::CreateBrowser(wi, popup, handlerPtr, urlStr);
return CefBrowser::CreateBrowser(wi, popup?true:false, handlerPtr, urlStr);
}
CEF_EXPORT cef_browser_t* cef_browser_create_sync(cef_window_info_t* windowInfo,
@ -50,7 +49,7 @@ CEF_EXPORT cef_browser_t* cef_browser_create_sync(cef_window_info_t* windowInfo,
urlStr = url;
CefRefPtr<CefBrowser> browserPtr(
CefBrowser::CreateBrowserSync(wi, popup, handlerPtr, urlStr));
CefBrowser::CreateBrowserSync(wi, popup?true:false, handlerPtr, urlStr));
if(browserPtr.get())
return CefBrowserCppToC::Wrap(browserPtr);
return NULL;

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -5,9 +5,9 @@
#ifndef _CPPTOC_H
#define _CPPTOC_H
#include "cef.h"
#include "cef_capi.h"
#include "../cef_logging.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cef_logging.h"
// Wrap a C++ class with a C structure. This is used when the class

View File

@ -10,10 +10,9 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/frame_cpptoc.h"
#include "cpptoc/request_cpptoc.h"
#include "cpptoc/stream_reader_cpptoc.h"
#include "libcef_dll/cpptoc/frame_cpptoc.h"
#include "libcef_dll/cpptoc/request_cpptoc.h"
#include "libcef_dll/cpptoc/stream_reader_cpptoc.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,14 +10,13 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/handler_cpptoc.h"
#include "ctocpp/browser_ctocpp.h"
#include "ctocpp/frame_ctocpp.h"
#include "ctocpp/request_ctocpp.h"
#include "ctocpp/stream_reader_ctocpp.h"
#include "ctocpp/v8value_ctocpp.h"
#include "../transfer_util.h"
#include "libcef_dll/cpptoc/handler_cpptoc.h"
#include "libcef_dll/ctocpp/browser_ctocpp.h"
#include "libcef_dll/ctocpp/frame_ctocpp.h"
#include "libcef_dll/ctocpp/request_ctocpp.h"
#include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
#include "libcef_dll/ctocpp/v8value_ctocpp.h"
#include "libcef_dll/transfer_util.h"
// MEMBER FUNCTIONS - Body may be edited by hand.
@ -50,7 +49,7 @@ enum cef_retval_t CEF_CALLBACK handler_handle_before_created(
urlStr = *url;
enum cef_retval_t rv = CefHandlerCppToC::Get(self)->HandleBeforeCreated(
browserPtr, wndInfo, popup, handlerPtr, urlStr);
browserPtr, wndInfo, popup?true:false, handlerPtr, urlStr);
transfer_string_contents(urlStr, url);
@ -457,7 +456,7 @@ enum cef_retval_t CEF_CALLBACK handler_handle_set_focus(
return RV_CONTINUE;
return CefHandlerCppToC::Get(self)->HandleSetFocus(
CefBrowserCToCpp::Wrap(browser), isWidget);
CefBrowserCToCpp::Wrap(browser), isWidget?true:false);
}

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,9 +10,8 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/post_data_cpptoc.h"
#include "cpptoc/post_data_element_cpptoc.h"
#include "libcef_dll/cpptoc/post_data_cpptoc.h"
#include "libcef_dll/cpptoc/post_data_element_cpptoc.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,8 +10,7 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/post_data_element_cpptoc.h"
#include "libcef_dll/cpptoc/post_data_element_cpptoc.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,8 +10,7 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/read_handler_cpptoc.h"
#include "libcef_dll/cpptoc/read_handler_cpptoc.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,10 +10,9 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/post_data_cpptoc.h"
#include "cpptoc/request_cpptoc.h"
#include "../transfer_util.h"
#include "libcef_dll/cpptoc/post_data_cpptoc.h"
#include "libcef_dll/cpptoc/request_cpptoc.h"
#include "libcef_dll/transfer_util.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,10 +10,9 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/scheme_handler_cpptoc.h"
#include "ctocpp/request_ctocpp.h"
#include "../transfer_util.h"
#include "libcef_dll/cpptoc/scheme_handler_cpptoc.h"
#include "libcef_dll/ctocpp/request_ctocpp.h"
#include "libcef_dll/transfer_util.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,9 +10,8 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/scheme_handler_cpptoc.h"
#include "cpptoc/scheme_handler_factory_cpptoc.h"
#include "libcef_dll/cpptoc/scheme_handler_cpptoc.h"
#include "libcef_dll/cpptoc/scheme_handler_factory_cpptoc.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,9 +10,8 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/stream_reader_cpptoc.h"
#include "ctocpp/read_handler_ctocpp.h"
#include "libcef_dll/cpptoc/stream_reader_cpptoc.h"
#include "libcef_dll/ctocpp/read_handler_ctocpp.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,9 +10,8 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/stream_writer_cpptoc.h"
#include "ctocpp/write_handler_ctocpp.h"
#include "libcef_dll/cpptoc/stream_writer_cpptoc.h"
#include "libcef_dll/ctocpp/write_handler_ctocpp.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,9 +10,8 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/v8handler_cpptoc.h"
#include "ctocpp/v8value_ctocpp.h"
#include "libcef_dll/cpptoc/v8handler_cpptoc.h"
#include "libcef_dll/ctocpp/v8value_ctocpp.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,10 +10,9 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/v8value_cpptoc.h"
#include "ctocpp/base_ctocpp.h"
#include "ctocpp/v8handler_ctocpp.h"
#include "libcef_dll/cpptoc/v8value_cpptoc.h"
#include "libcef_dll/ctocpp/base_ctocpp.h"
#include "libcef_dll/ctocpp/v8handler_ctocpp.h"
// GLOBAL FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,8 +10,7 @@
// for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/write_handler_cpptoc.h"
#include "libcef_dll/cpptoc/write_handler_cpptoc.h"
// MEMBER FUNCTIONS - Body may be edited by hand.

View File

@ -15,9 +15,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "cpptoc.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cpptoc/cpptoc.h"
// Wrap a C++ class with a C structure.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -5,9 +5,9 @@
#ifndef _BASE_CTOCPP_H
#define _BASE_CTOCPP_H
#include "cef.h"
#include "cef_capi.h"
#include "../cef_logging.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cef_logging.h"
// CefCToCpp implementation for CefBase.

View File

@ -10,10 +10,9 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/handler_cpptoc.h"
#include "ctocpp/browser_ctocpp.h"
#include "ctocpp/frame_ctocpp.h"
#include "libcef_dll/cpptoc/handler_cpptoc.h"
#include "libcef_dll/ctocpp/browser_ctocpp.h"
#include "libcef_dll/ctocpp/frame_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
@ -22,7 +21,7 @@ bool CefBrowser::CreateBrowser(CefWindowInfo& windowInfo, bool popup,
CefRefPtr<CefHandler> handler, const std::wstring& url)
{
return cef_browser_create(&windowInfo, popup, CefHandlerCppToC::Wrap(handler),
url.c_str());
url.c_str())?true:false;
}
CefRefPtr<CefBrowser> CefBrowser::CreateBrowserSync(CefWindowInfo& windowInfo,
@ -59,7 +58,7 @@ bool CefBrowserCToCpp::CanGoForward()
if(CEF_MEMBER_MISSING(struct_, can_go_forward))
return false;
return struct_->can_go_forward(struct_);
return struct_->can_go_forward(struct_)?true:false;
}
void CefBrowserCToCpp::GoForward()
@ -107,7 +106,7 @@ bool CefBrowserCToCpp::IsPopup()
if(CEF_MEMBER_MISSING(struct_, is_popup))
return false;
return struct_->is_popup(struct_);
return struct_->is_popup(struct_)?true:false;
}
CefRefPtr<CefHandler> CefBrowserCToCpp::GetHandler()

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -5,9 +5,9 @@
#ifndef _CTOCPP_H
#define _CTOCPP_H
#include "cef.h"
#include "cef_capi.h"
#include "../cef_logging.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/cef_logging.h"
// Wrap a C structure with a C++ class. This is used when the implementation

View File

@ -10,10 +10,9 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/frame_ctocpp.h"
#include "ctocpp/request_ctocpp.h"
#include "ctocpp/stream_reader_ctocpp.h"
#include "libcef_dll/ctocpp/frame_ctocpp.h"
#include "libcef_dll/ctocpp/request_ctocpp.h"
#include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
@ -168,7 +167,7 @@ bool CefFrameCToCpp::IsMain()
if(CEF_MEMBER_MISSING(struct_, is_main))
return false;
return struct_->is_main(struct_);
return struct_->is_main(struct_)?true:false;
}
bool CefFrameCToCpp::IsFocused()
@ -176,7 +175,7 @@ bool CefFrameCToCpp::IsFocused()
if(CEF_MEMBER_MISSING(struct_, is_focused))
return false;
return struct_->is_focused(struct_);
return struct_->is_focused(struct_)?true:false;
}
std::wstring CefFrameCToCpp::GetName()

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,14 +10,13 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/browser_cpptoc.h"
#include "cpptoc/frame_cpptoc.h"
#include "cpptoc/request_cpptoc.h"
#include "cpptoc/stream_reader_cpptoc.h"
#include "cpptoc/v8value_cpptoc.h"
#include "ctocpp/handler_ctocpp.h"
#include "../transfer_util.h"
#include "libcef_dll/cpptoc/browser_cpptoc.h"
#include "libcef_dll/cpptoc/frame_cpptoc.h"
#include "libcef_dll/cpptoc/request_cpptoc.h"
#include "libcef_dll/cpptoc/stream_reader_cpptoc.h"
#include "libcef_dll/cpptoc/v8value_cpptoc.h"
#include "libcef_dll/ctocpp/handler_ctocpp.h"
#include "libcef_dll/transfer_util.h"
// VIRTUAL METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,9 +10,8 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/post_data_ctocpp.h"
#include "ctocpp/post_data_element_ctocpp.h"
#include "libcef_dll/ctocpp/post_data_ctocpp.h"
#include "libcef_dll/ctocpp/post_data_element_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
@ -58,7 +57,7 @@ bool CefPostDataCToCpp::RemoveElement(CefRefPtr<CefPostDataElement> element)
return false;
return struct_->remove_element(struct_,
CefPostDataElementCToCpp::Unwrap(element));
CefPostDataElementCToCpp::Unwrap(element))?true:false;
}
bool CefPostDataCToCpp::AddElement(CefRefPtr<CefPostDataElement> element)
@ -68,7 +67,7 @@ bool CefPostDataCToCpp::AddElement(CefRefPtr<CefPostDataElement> element)
return false;
return struct_->add_element(struct_,
CefPostDataElementCToCpp::Unwrap(element));
CefPostDataElementCToCpp::Unwrap(element))?true:false;
}
void CefPostDataCToCpp::RemoveElements()

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,8 +10,7 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/post_data_element_ctocpp.h"
#include "libcef_dll/ctocpp/post_data_element_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,8 +10,7 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/read_handler_ctocpp.h"
#include "libcef_dll/ctocpp/read_handler_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,10 +10,9 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/post_data_ctocpp.h"
#include "ctocpp/request_ctocpp.h"
#include "../transfer_util.h"
#include "libcef_dll/ctocpp/post_data_ctocpp.h"
#include "libcef_dll/ctocpp/request_ctocpp.h"
#include "libcef_dll/transfer_util.h"
// STATIC METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,10 +10,9 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/request_cpptoc.h"
#include "ctocpp/scheme_handler_ctocpp.h"
#include "../transfer_util.h"
#include "libcef_dll/cpptoc/request_cpptoc.h"
#include "libcef_dll/ctocpp/scheme_handler_ctocpp.h"
#include "libcef_dll/transfer_util.h"
// VIRTUAL METHODS - Body may be edited by hand.
@ -33,7 +32,7 @@ bool CefSchemeHandlerCToCpp::ProcessRequest(CefRefPtr<CefRequest> request,
transfer_string_contents(mimeTypeRet, mime_type, true);
return rv;
return rv ? true : false;
}
void CefSchemeHandlerCToCpp::Cancel()
@ -50,7 +49,8 @@ bool CefSchemeHandlerCToCpp::ReadResponse(void* data_out, int bytes_to_read,
if(CEF_MEMBER_MISSING(struct_, read_response))
return false;
return struct_->read_response(struct_, data_out, bytes_to_read, bytes_read);
return struct_->read_response(struct_, data_out, bytes_to_read, bytes_read)
? true : false;
}

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,9 +10,8 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/scheme_handler_ctocpp.h"
#include "ctocpp/scheme_handler_factory_ctocpp.h"
#include "libcef_dll/ctocpp/scheme_handler_ctocpp.h"
#include "libcef_dll/ctocpp/scheme_handler_factory_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,9 +10,8 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/read_handler_cpptoc.h"
#include "ctocpp/stream_reader_ctocpp.h"
#include "libcef_dll/cpptoc/read_handler_cpptoc.h"
#include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,9 +10,8 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/write_handler_cpptoc.h"
#include "ctocpp/stream_writer_ctocpp.h"
#include "libcef_dll/cpptoc/write_handler_cpptoc.h"
#include "libcef_dll/ctocpp/stream_writer_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,9 +10,8 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/v8value_cpptoc.h"
#include "ctocpp/v8handler_ctocpp.h"
#include "libcef_dll/cpptoc/v8value_cpptoc.h"
#include "libcef_dll/ctocpp/v8handler_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
@ -48,7 +47,7 @@ bool CefV8HandlerCToCpp::Execute(const std::wstring& name,
if(argsStructPtr)
delete [] argsStructPtr;
return rv;
return rv ? true : false;
}

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -10,10 +10,9 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "cpptoc/base_cpptoc.h"
#include "cpptoc/v8handler_cpptoc.h"
#include "ctocpp/v8value_ctocpp.h"
#include "libcef_dll/cpptoc/base_cpptoc.h"
#include "libcef_dll/cpptoc/v8handler_cpptoc.h"
#include "libcef_dll/ctocpp/v8value_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
@ -108,7 +107,7 @@ bool CefV8ValueCToCpp::IsUndefined()
if(CEF_MEMBER_MISSING(struct_, is_undefined))
return false;
return struct_->is_undefined(struct_);
return struct_->is_undefined(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsNull()
@ -116,7 +115,7 @@ bool CefV8ValueCToCpp::IsNull()
if(CEF_MEMBER_MISSING(struct_, is_null))
return false;
return struct_->is_null(struct_);
return struct_->is_null(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsBool()
@ -124,7 +123,7 @@ bool CefV8ValueCToCpp::IsBool()
if(CEF_MEMBER_MISSING(struct_, is_bool))
return false;
return struct_->is_bool(struct_);
return struct_->is_bool(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsInt()
@ -132,7 +131,7 @@ bool CefV8ValueCToCpp::IsInt()
if(CEF_MEMBER_MISSING(struct_, is_int))
return false;
return struct_->is_int(struct_);
return struct_->is_int(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsDouble()
@ -140,7 +139,7 @@ bool CefV8ValueCToCpp::IsDouble()
if(CEF_MEMBER_MISSING(struct_, is_double))
return false;
return struct_->is_double(struct_);
return struct_->is_double(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsString()
@ -148,7 +147,7 @@ bool CefV8ValueCToCpp::IsString()
if(CEF_MEMBER_MISSING(struct_, is_string))
return false;
return struct_->is_string(struct_);
return struct_->is_string(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsObject()
@ -156,7 +155,7 @@ bool CefV8ValueCToCpp::IsObject()
if(CEF_MEMBER_MISSING(struct_, is_object))
return false;
return struct_->is_object(struct_);
return struct_->is_object(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsArray()
@ -164,7 +163,7 @@ bool CefV8ValueCToCpp::IsArray()
if(CEF_MEMBER_MISSING(struct_, is_array))
return false;
return struct_->is_array(struct_);
return struct_->is_array(struct_)?true:false;
}
bool CefV8ValueCToCpp::IsFunction()
@ -172,7 +171,7 @@ bool CefV8ValueCToCpp::IsFunction()
if(CEF_MEMBER_MISSING(struct_, is_function))
return false;
return struct_->is_function(struct_);
return struct_->is_function(struct_)?true:false;
}
bool CefV8ValueCToCpp::GetBoolValue()
@ -180,7 +179,7 @@ bool CefV8ValueCToCpp::GetBoolValue()
if(CEF_MEMBER_MISSING(struct_, get_bool_value))
return false;
return struct_->get_bool_value(struct_);
return struct_->get_bool_value(struct_)?true:false;
}
int CefV8ValueCToCpp::GetIntValue()
@ -218,7 +217,7 @@ bool CefV8ValueCToCpp::HasValue(const std::wstring& key)
if(CEF_MEMBER_MISSING(struct_, has_value_bykey))
return false;
return struct_->has_value_bykey(struct_, key.c_str());
return struct_->has_value_bykey(struct_, key.c_str())?true:false;
}
bool CefV8ValueCToCpp::HasValue(int index)
@ -226,7 +225,7 @@ bool CefV8ValueCToCpp::HasValue(int index)
if(CEF_MEMBER_MISSING(struct_, has_value_byindex))
return false;
return struct_->has_value_byindex(struct_, index);
return struct_->has_value_byindex(struct_, index)?true:false;
}
bool CefV8ValueCToCpp::DeleteValue(const std::wstring& key)
@ -234,7 +233,7 @@ bool CefV8ValueCToCpp::DeleteValue(const std::wstring& key)
if(CEF_MEMBER_MISSING(struct_, delete_value_bykey))
return false;
return struct_->delete_value_bykey(struct_, key.c_str());
return struct_->delete_value_bykey(struct_, key.c_str())?true:false;
}
bool CefV8ValueCToCpp::DeleteValue(int index)
@ -242,7 +241,7 @@ bool CefV8ValueCToCpp::DeleteValue(int index)
if(CEF_MEMBER_MISSING(struct_, delete_value_byindex))
return false;
return struct_->delete_value_byindex(struct_, index);
return struct_->delete_value_byindex(struct_, index)?true:false;
}
CefRefPtr<CefV8Value> CefV8ValueCToCpp::GetValue(const std::wstring& key)
@ -274,7 +273,7 @@ bool CefV8ValueCToCpp::SetValue(const std::wstring& key,
return false;
return struct_->set_value_bykey(struct_, key.c_str(),
CefV8ValueCToCpp::Unwrap(value));
CefV8ValueCToCpp::Unwrap(value))?true:false;
}
bool CefV8ValueCToCpp::SetValue(int index, CefRefPtr<CefV8Value> value)
@ -283,7 +282,7 @@ bool CefV8ValueCToCpp::SetValue(int index, CefRefPtr<CefV8Value> value)
return false;
return struct_->set_value_byindex(struct_, index,
CefV8ValueCToCpp::Unwrap(value));
CefV8ValueCToCpp::Unwrap(value))?true:false;
}
bool CefV8ValueCToCpp::GetKeys(std::vector<std::wstring>& keys)
@ -380,7 +379,7 @@ bool CefV8ValueCToCpp::ExecuteFunction(CefRefPtr<CefV8Value> object,
if(argsStructPtr)
delete [] argsStructPtr;
return rv;
return rv?true:false;
}

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
#else // USING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed wrapper-side only.

View File

@ -10,8 +10,7 @@
// tools directory for more information.
//
#include "../precompiled_libcef.h"
#include "ctocpp/write_handler_ctocpp.h"
#include "libcef_dll/ctocpp/write_handler_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.

View File

@ -16,9 +16,9 @@
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
#else // BUILDING_CEF_SHARED
#include "cef.h"
#include "cef_capi.h"
#include "ctocpp.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "libcef_dll/ctocpp/ctocpp.h"
// Wrap a C structure with a C++ class.
// This class may be instantiated and accessed DLL-side only.

View File

@ -2,12 +2,11 @@
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "precompiled_libcef.h"
#include "cef.h"
#include "cef_capi.h"
#include "include/cef.h"
#include "include/cef_capi.h"
#include "include/cef_nplugin.h"
#include "include/cef_nplugin_capi.h"
#include "cef_logging.h"
#include "cef_nplugin.h"
#include "cef_nplugin_capi.h"
#include "cpptoc/browser_cpptoc.h"
#include "cpptoc/post_data_cpptoc.h"
#include "cpptoc/post_data_element_cpptoc.h"
@ -30,7 +29,7 @@ CEF_EXPORT int cef_initialize(int multi_threaded_message_loop,
std::wstring cachePath;
if(cache_path)
cachePath = cache_path;
return CefInitialize(multi_threaded_message_loop, cachePath);
return CefInitialize(multi_threaded_message_loop?true:false, cachePath);
}
CEF_EXPORT void cef_shutdown()

View File

@ -1,617 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="libcef_dll"
ProjectGUID="{C13650D5-CF1A-4259-BE45-B1EBA6280E47}"
RootNamespace="libcef_dll"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
ConfigurationType="2"
InheritedPropertySheets="$(SolutionDir)..\build\debug.vsprops;.\libcef_dll.vsprops"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="2"
PrecompiledHeaderThrough="precompiled_libcef.h"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\libcef.dll"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
ConfigurationType="2"
InheritedPropertySheets="$(SolutionDir)..\build\release.vsprops;.\libcef_dll.vsprops"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="2"
PrecompiledHeaderThrough="precompiled_libcef.h"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\libcef.dll"
LinkIncremental="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="include"
>
<File
RelativePath="..\include\cef.h"
>
</File>
<File
RelativePath="..\include\cef_capi.h"
>
</File>
<File
RelativePath="..\include\cef_export.h"
>
</File>
<File
RelativePath="..\include\cef_nplugin.h"
>
</File>
<File
RelativePath="..\include\cef_nplugin_capi.h"
>
</File>
<File
RelativePath="..\include\cef_ptr.h"
>
</File>
<File
RelativePath="..\include\cef_string.h"
>
</File>
<File
RelativePath="..\include\cef_string_list.h"
>
</File>
<File
RelativePath="..\include\cef_string_map.h"
>
</File>
<File
RelativePath="..\include\cef_types.h"
>
</File>
<File
RelativePath="..\include\cef_types_win.h"
>
</File>
<File
RelativePath="..\include\cef_win.h"
>
</File>
</Filter>
<Filter
Name="cpptoc"
>
<File
RelativePath=".\cpptoc\browser_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\browser_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\frame_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\frame_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\post_data_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\post_data_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\post_data_element_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\post_data_element_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\request_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\request_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\stream_reader_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\stream_reader_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\stream_writer_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\stream_writer_cpptoc.h"
>
</File>
<File
RelativePath=".\cpptoc\v8value_cpptoc.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\cpptoc\v8value_cpptoc.h"
>
</File>
</Filter>
<Filter
Name="ctocpp"
>
<File
RelativePath=".\ctocpp\ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\handler_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\handler_ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\read_handler_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\read_handler_ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\scheme_handler_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\scheme_handler_ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\scheme_handler_factory_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\scheme_handler_factory_ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\v8handler_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\v8handler_ctocpp.h"
>
</File>
<File
RelativePath=".\ctocpp\write_handler_ctocpp.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PrecompiledHeaderThrough="../precompiled_libcef.h"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\ctocpp\write_handler_ctocpp.h"
>
</File>
</Filter>
<Filter
Name="resources"
>
<File
RelativePath=".\libcef_dll.rc"
>
</File>
<File
RelativePath="$(OutDir)\obj\global_intermediate\webkit\webkit_resources.rc"
>
</File>
<File
RelativePath="$(OutDir)\obj\global_intermediate\webkit\webkit_strings_en-US.rc"
>
</File>
</Filter>
<File
RelativePath=".\cef_logging.h"
>
</File>
<File
RelativePath=".\libcef_dll.cc"
>
</File>
<File
RelativePath=".\precompiled_libcef.cc"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="1"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="1"
/>
</FileConfiguration>
</File>
<File
RelativePath=".\precompiled_libcef.h"
>
</File>
<File
RelativePath=".\resource.h"
>
</File>
<File
RelativePath=".\transfer_util.cpp"
>
</File>
<File
RelativePath=".\transfer_util.h"
>
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>

Some files were not shown because too many files have changed in this diff Show More