Go to My Blog
Go to Lin's Blog

Chromium之工程依赖关系.

Chromium各版本可能有差异,我的版本是chromium.r197479,2013/08前后下载的source code.

Visual Studio Ultimate版本有工具可以自动生成项目依赖关系图,可惜我只有2010 express以及2012 professional...

所以我就手动来绘制项目依赖关系吧,(726个项目)哭...

每个.vcxproj文件都有类似下面的item,描述所依赖的其他工程.

<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_heap_snapshot_worker_js.vcxproj">
<Project>{41244340-17E7-F642-C42E-CC987B190D2C}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>

chrome.exe:

Include="packed_extra_resources.vcxproj"
Include="packed_resources.vcxproj"

Include="..\third_party\adobe\flash\flapper_binaries.vcxproj">
Include="..\third_party\widevine\cdm\widevinecdmadapter.vcxproj">
Include="chrome_dll.vcxproj">
Include="chrome_nacl_win64.vcxproj">
Include="chrome_process_finder.vcxproj">
Include="chrome_version_resources.vcxproj">
Include="installer_util.vcxproj">
Include="image_pre_reader.vcxproj">
Include="..\base\base.vcxproj">
Include="..\breakpad\breakpad_handler.vcxproj">
Include="..\breakpad\breakpad_sender.vcxproj">
Include="..\components\breakpad_component.vcxproj">
Include="..\sandbox\sandbox.vcxproj">
Include="app\policy\policy.vcxproj">
Include="..\win8\metro_driver\metro_driver_version_resources.vcxproj">
Include="..\win8\metro_driver\metro_driver.vcxproj">
Include="..\win8\metro_driver\metro_driver_unittests.vcxproj">
Include="..\win8\delegate_execute\delegate_execute_version_resources.vcxproj">
Include="..\win8\delegate_execute\delegate_execute.vcxproj">
Include="..\win8\delegate_execute\delegate_execute_unittests.vcxproj">
Include="chrome_extra_resources.vcxproj">
Include="..\content\browser\devtools\devtools_resources.vcxproj">
Include="..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj">
Include="..\third_party\WebKit\Source\devtools\devtools_html.vcxproj">
Include="..\third_party\WebKit\Source\devtools\devtools_extension_api.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\frontend_protocol_sources.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_elements_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_resources_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_network_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_scripts_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_timeline_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_profiles_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_audits_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_codemirror_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_layers_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_heap_snapshot_worker_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_script_formatter_worker_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_css.vcxproj">
Include="..\content\browser\tracing\tracing_resources.vcxproj">
Include="..\third_party\trace-viewer\generate_about_tracing.vcxproj">
Include="..\content\browser\tracing\generate_tracing_grd.vcxproj">
Include="chrome_resources.vcxproj">
Include="about_credits.vcxproj">
Include="chrome_strings.vcxproj">
Include="platform_locale_settings.vcxproj">
Include="theme_resources.vcxproj">
Include="chrome_unscaled_resources.vcxproj">
Include="theme_resources_gen.vcxproj">
Include="..\ui\ui_resources.vcxproj">
Include="..\components\component_strings.vcxproj">
Include="..\net\net_resources.vcxproj">
Include="..\ui\base\strings\ui_strings.vcxproj">
Include="..\ash\ash_strings.vcxproj">
Include="..\content\content_resources.vcxproj">
Include="..\device\bluetooth\device_bluetooth_strings.vcxproj">
Include="..\webkit\webkit_resources.vcxproj">
Include="..\webkit\webkit_strings.vcxproj">
Include="chrome_main_dll.vcxproj">
Include="policy_path_parser.vcxproj">
Include="common_constants.vcxproj">
Include="..\components\nacl_switches.vcxproj">
Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
Include="app\policy\cloud_policy_code_generate.vcxproj">
Include="app\policy\cloud_policy_proto_generated_compile.vcxproj">
Include="..\third_party\protobuf\protobuf_lite.vcxproj">
Include="metro_utils.vcxproj">
Include="installer_util_strings.vcxproj">
Include="..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
Include="..\content\content_common.vcxproj">
Include="..\content\content.vcxproj">
Include="..\courgette\courgette_lib.vcxproj">
Include="..\third_party\lzma_sdk\lzma_sdk.vcxproj">
Include="..\crypto\crypto.vcxproj">
Include="..\third_party\bspatch\bspatch.vcxproj">
Include="..\third_party\icu\icui18n.vcxproj">
Include="..\third_party\icu\icuuc.vcxproj">
Include="..\testing\gtest.vcxproj">
Include="..\testing\gtest_prod.vcxproj">
Include="..\base\base_static.vcxproj">

 

 

chrome.exe所依赖的84个project各自的依赖关系:

先列出几个大头:

chrome_main_dll:                    279
..\content\content.vcxproj:      154
chrome_nacl_win64.vcxproj:    54
..\win8\delegate_execute\delegate_execute.vcxproj:                              24
..\win8\metro_driver\metro_driver.vcxproj:                                            16
..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj:   15
packed_resources.vcxproj:                                                                       13

==============>> Detail

Include="chrome_main_dll.vcxproj">
<ProjectReference Include="common.vcxproj">
<ProjectReference Include="browser.vcxproj">
<ProjectReference Include="..\sync\sync.vcxproj">
<ProjectReference Include="..\printing\printing.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_host.vcxproj">
<ProjectReference Include="service.vcxproj">
<ProjectReference Include="app\policy\policy.vcxproj">
<ProjectReference Include="chrome_user32_delay_imports.vcxproj">
<ProjectReference Include="chrome_dll_pdb_workaround.vcxproj">
<ProjectReference Include="chrome_resources.vcxproj">
<ProjectReference Include="chrome_version_resources.vcxproj">
<ProjectReference Include="chrome_unscaled_resources.vcxproj">
<ProjectReference Include="..\crypto\crypto.vcxproj">
<ProjectReference Include="..\net\net_resources.vcxproj">
<ProjectReference Include="..\third_party\cld\cld.vcxproj">
<ProjectReference Include="..\ui\views\views.vcxproj">
<ProjectReference Include="..\webkit\webkit_resources.vcxproj">
<ProjectReference Include="debugger.vcxproj">
<ProjectReference Include="plugin.vcxproj">
<ProjectReference Include="renderer.vcxproj">
<ProjectReference Include="utility.vcxproj">
<ProjectReference Include="..\content\content_gpu.vcxproj">
<ProjectReference Include="..\content\content_ppapi_plugin.vcxproj">
<ProjectReference Include="..\content\content_worker.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\devtools_frontend_resources.vcxproj">
<ProjectReference Include="..\content\content_app_both.vcxproj">
<ProjectReference Include="..\third_party\icu\icuuc.vcxproj">
<ProjectReference Include="common_net.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="about_credits.vcxproj">
<ProjectReference Include="chrome_strings.vcxproj">
<ProjectReference Include="..\net\net.vcxproj">
<ProjectReference Include="..\third_party\icu\icui18n.vcxproj">
<ProjectReference Include="..\gpu\gpu_ipc.vcxproj">
<ProjectReference Include="..\gpu\gpu.vcxproj">
<ProjectReference Include="common_version.vcxproj">
<ProjectReference Include="installer_util.vcxproj">
<ProjectReference Include="installer_util_strings.vcxproj">
<ProjectReference Include="..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
<ProjectReference Include="common_constants.vcxproj">
<ProjectReference Include="..\components\nacl_switches.vcxproj">
<ProjectReference Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
<ProjectReference Include="..\content\content_common.vcxproj">
<ProjectReference Include="..\content\content.vcxproj">
<ProjectReference Include="..\content\content_resources.vcxproj">
<ProjectReference Include="..\courgette\courgette_lib.vcxproj">
<ProjectReference Include="..\third_party\lzma_sdk\lzma_sdk.vcxproj">
<ProjectReference Include="..\third_party\bspatch\bspatch.vcxproj">
<ProjectReference Include="metrics_proto.vcxproj">
<ProjectReference Include="..\third_party\protobuf\protobuf_lite.vcxproj">
<ProjectReference Include="..\base\base_i18n.vcxproj">
<ProjectReference Include="..\base\base_prefs.vcxproj">
<ProjectReference Include="..\base\base_static.vcxproj">
<ProjectReference Include="theme_resources.vcxproj">
<ProjectReference Include="theme_resources_gen.vcxproj">
<ProjectReference Include="..\ui\ui_resources.vcxproj">
<ProjectReference Include="..\components\json_schema.vcxproj">
<ProjectReference Include="..\ui\ui.vcxproj">
<ProjectReference Include="..\components\policy_component.vcxproj">
<ProjectReference Include="..\components\visitedlink_common.vcxproj">
<ProjectReference Include="..\ipc\ipc.vcxproj">
<ProjectReference Include="..\url\url_lib.vcxproj">
<ProjectReference Include="..\skia\skia.vcxproj">
<ProjectReference Include="..\third_party\libxml\libxml.vcxproj">
<ProjectReference Include="..\third_party\zlib\zlib.vcxproj">
<ProjectReference Include="..\third_party\mt19937ar\mt19937ar.vcxproj">
<ProjectReference Include="..\third_party\sqlite\sqlite.vcxproj">
<ProjectReference Include="..\third_party\zlib\zip.vcxproj">
<ProjectReference Include="..\third_party\zlib\minizip.vcxproj">
<ProjectReference Include="..\webkit\common\user_agent\user_agent.vcxproj">
<ProjectReference Include="..\device\bluetooth\device_bluetooth.vcxproj">
<ProjectReference Include="..\device\bluetooth\device_bluetooth_strings.vcxproj">
<ProjectReference Include="..\device\usb\device_usb.vcxproj">
<ProjectReference Include="app\policy\cloud_policy_code_generate.vcxproj">
<ProjectReference Include="app\policy\cloud_policy_proto_generated_compile.vcxproj">
<ProjectReference Include="common\extensions\api\api.vcxproj">
<ProjectReference Include="..\tools\json_schema_compiler\api_gen_util.vcxproj">
<ProjectReference Include="..\components\autofill_core_common.vcxproj">
<ProjectReference Include="..\third_party\WebKit\public\blink_minimal.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\web\blink_common.vcxproj">
<ProjectReference Include="..\components\nacl_common.vcxproj">
<ProjectReference Include="..\third_party\adobe\flash\flapper_version_h.vcxproj">
<ProjectReference Include="..\third_party\re2\re2.vcxproj">
<ProjectReference Include="..\webkit\support\glue.vcxproj">
<ProjectReference Include="..\remoting\remoting_client_plugin.vcxproj">
<ProjectReference Include="..\remoting\remoting_base.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx.vcxproj">
<ProjectReference Include="..\third_party\libvpx\gen_asm_offsets_vp8.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_asm_offsets_vp8.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_mmx.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_sse2.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_ssse3.vcxproj">
<ProjectReference Include="..\third_party\libyuv\libyuv.vcxproj">
<ProjectReference Include="..\third_party\libjpeg_turbo\libjpeg.vcxproj">
<ProjectReference Include="..\third_party\opus\opus.vcxproj">
<ProjectReference Include="..\third_party\speex\libspeex.vcxproj">
<ProjectReference Include="..\media\media.vcxproj">
<ProjectReference Include="..\media\shared_memory_support.vcxproj">
<ProjectReference Include="..\remoting\remoting_jingle_glue.vcxproj">
<ProjectReference Include="..\jingle\jingle_glue.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle.vcxproj">
<ProjectReference Include="..\third_party\expat\expat.vcxproj">
<ProjectReference Include="..\net\third_party\nss\libssl.vcxproj">
<ProjectReference Include="..\third_party\nss\nspr.vcxproj">
<ProjectReference Include="..\third_party\nss\nss.vcxproj">
<ProjectReference Include="..\third_party\jsoncpp\jsoncpp.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle_p2p_constants.vcxproj">
<ProjectReference Include="..\jingle\notifier.vcxproj">
<ProjectReference Include="..\remoting\remoting_resources.vcxproj">
<ProjectReference Include="..\remoting\proto\chromotocol_proto_lib.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\desktop_capture.vcxproj">
<ProjectReference Include="..\third_party\webrtc\system_wrappers\source\system_wrappers.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\desktop_capture_differ_sse2.vcxproj">
<ProjectReference Include="..\remoting\remoting_client.vcxproj">
<ProjectReference Include="..\remoting\remoting_protocol.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_cpp_objects.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_c.vcxproj">
<ProjectReference Include="browser\search_engines\prepopulated_engines.vcxproj">
<ProjectReference Include="browser_ui.vcxproj">
<ProjectReference Include="cert_logger_proto.vcxproj">
<ProjectReference Include="browser_ui_views.vcxproj">
<ProjectReference Include="chrome_extra_resources.vcxproj">
<ProjectReference Include="..\content\browser\devtools\devtools_resources.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\devtools_html.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\devtools_extension_api.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\frontend_protocol_sources.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_elements_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_resources_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_network_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_scripts_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_timeline_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_profiles_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_audits_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_codemirror_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_layers_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_heap_snapshot_worker_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_script_formatter_worker_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_css.vcxproj">
<ProjectReference Include="..\content\browser\tracing\tracing_resources.vcxproj">
<ProjectReference Include="..\third_party\trace-viewer\generate_about_tracing.vcxproj">
<ProjectReference Include="..\content\browser\tracing\generate_tracing_grd.vcxproj">
<ProjectReference Include="platform_locale_settings.vcxproj">
<ProjectReference Include="in_memory_url_index_cache_proto.vcxproj">
<ProjectReference Include="safe_browsing_proto.vcxproj">
<ProjectReference Include="safe_browsing_report_proto.vcxproj">
<ProjectReference Include="feedback_proto.vcxproj">
<ProjectReference Include="variations_seed_proto.vcxproj">
<ProjectReference Include="..\components\auto_login_parser.vcxproj">
<ProjectReference Include="..\content\content_browser.vcxproj">
<ProjectReference Include="..\third_party\cacheinvalidation\cacheinvalidation.vcxproj">
<ProjectReference Include="..\third_party\cacheinvalidation\cacheinvalidation_proto_cpp.vcxproj">
<ProjectReference Include="..\third_party\libusb\libusb.vcxproj">
<ProjectReference Include="..\ui\base\strings\ui_strings.vcxproj">
<ProjectReference Include="..\ui\message_center\message_center.vcxproj">
<ProjectReference Include="..\ui\native_theme\native_theme.vcxproj">
<ProjectReference Include="..\ui\snapshot\snapshot.vcxproj">
<ProjectReference Include="browser_extensions.vcxproj">
<ProjectReference Include="..\net\http_server.vcxproj">
<ProjectReference Include="..\third_party\leveldatabase\leveldatabase.vcxproj">
<ProjectReference Include="..\third_party\snappy\snappy.vcxproj">
<ProjectReference Include="..\webkit\webkit_storage_browser.vcxproj">
<ProjectReference Include="..\webkit\webkit_storage_common.vcxproj">
<ProjectReference Include="launcher_support.vcxproj">
<ProjectReference Include="..\third_party\iaccessible2\iaccessible2.vcxproj">
<ProjectReference Include="..\third_party\isimpledom\isimpledom.vcxproj">
<ProjectReference Include="browser\performance_monitor\performance_monitor.vcxproj">
<ProjectReference Include="..\components\autofill_content_risk_proto.vcxproj">
<ProjectReference Include="..\components\component_strings.vcxproj">
<ProjectReference Include="..\net\net_with_v8.vcxproj">
<ProjectReference Include="..\third_party\hunspell\hunspell.vcxproj">
<ProjectReference Include="..\third_party\libphonenumber\libphonenumber.vcxproj">
<ProjectReference Include="..\third_party\libphonenumber\libphonenumber_without_metadata.vcxproj">
<ProjectReference Include="..\third_party\npapi\npapi.vcxproj">
<ProjectReference Include="..\ui\compositor\compositor.vcxproj">
<ProjectReference Include="..\ui\surface\surface.vcxproj">
<ProjectReference Include="..\ui\web_dialogs\web_dialogs.vcxproj">
<ProjectReference Include="..\v8\tools\gyp\v8.vcxproj">
<ProjectReference Include="..\webkit\common\webkit_common.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\sel.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\env_cleanser.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\nacl_error_code.vcxproj">
<ProjectReference Include="..\native_client\src\shared\gio\gio.vcxproj">
<ProjectReference Include="..\native_client\src\shared\platform\platform.vcxproj">
<ProjectReference Include="..\native_client\src\shared\srpc\nonnacl_srpc.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\debug_stub\debug_stub.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\desc\nrd_xfer.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\desc\desc_wrapper.vcxproj">
<ProjectReference Include="..\native_client\src\shared\imc\imc.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\nacl_base\nacl_base.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\fault_injection\nacl_fault_inject.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\gio\gio_wrapped_desc.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\interval_multiset\nacl_interval.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\perf_counter\nacl_perf_counter.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\platform_qualify\platform_qual_lib.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\cpu_features\cpu_features.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\manifest_name_service_proxy\manifest_proxy.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\threading\thread_interface.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\simple_service\simple_service.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator\validation_cache.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator\validators.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\arch\x86\service_runtime_x86_common.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator_ragel\dfa_validate_x86_32.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\arch\x86_32\service_runtime_x86_32.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator_x86\nccopy_x86_32.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_ipc.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_proxy.vcxproj">
<ProjectReference Include="metro_utils.vcxproj">
<ProjectReference Include="..\google_update\google_update.vcxproj">
<ProjectReference Include="..\ui\app_list\app_list.vcxproj">
<ProjectReference Include="..\ui\views\controls\webview\webview.vcxproj">
<ProjectReference Include="..\win8\win8_util.vcxproj">
<ProjectReference Include="probe_message_proto.vcxproj">
<ProjectReference Include="..\components\browser_context_keyed_service.vcxproj">
<ProjectReference Include="..\components\encryptor.vcxproj">
<ProjectReference Include="..\components\sessions.vcxproj">
<ProjectReference Include="..\components\user_prefs.vcxproj">
<ProjectReference Include="..\components\visitedlink_browser.vcxproj">
<ProjectReference Include="..\components\web_modal.vcxproj">
<ProjectReference Include="..\components\webdata_common.vcxproj">
<ProjectReference Include="..\google_apis\google_apis.vcxproj">
<ProjectReference Include="..\sql\sql.vcxproj">
<ProjectReference Include="..\ui\shell_dialogs.vcxproj">
<ProjectReference Include="apps.vcxproj">
<ProjectReference Include="sync_file_system_drive_proto.vcxproj">
<ProjectReference Include="sync_file_system_proto.vcxproj">
<ProjectReference Include="..\cc\cc.vcxproj">
<ProjectReference Include="..\components\autofill_content_browser.vcxproj">
<ProjectReference Include="..\components\autofill_core_browser.vcxproj">
<ProjectReference Include="..\components\autofill_regexes.vcxproj">
<ProjectReference Include="..\components\navigation_interception.vcxproj">
<ProjectReference Include="..\ui\gl\gl.vcxproj">
<ProjectReference Include="cloud_policy_proto.vcxproj">
<ProjectReference Include="policy_path_parser.vcxproj">
<ProjectReference Include="chrome_process_finder.vcxproj">
<ProjectReference Include="..\content\content_plugin.vcxproj">
<ProjectReference Include="..\components\autofill_content_renderer.vcxproj">
<ProjectReference Include="..\content\content_renderer.vcxproj">
<ProjectReference Include="..\components\visitedlink_renderer.vcxproj">
<ProjectReference Include="..\third_party\WebKit\public\blink.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\web\webkit.vcxproj">
<ProjectReference Include="..\webkit\support\glue_child.vcxproj">
<ProjectReference Include="..\webkit\renderer\webkit_renderer.vcxproj">
<ProjectReference Include="..\components\nacl.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_shared.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\sel_main_chrome.vcxproj">
<ProjectReference Include="..\ppapi\native_client\nacl_irt.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_proxy_untrusted.vcxproj">
<ProjectReference Include="..\native_client\prep_toolchain.vcxproj">
<ProjectReference Include="..\native_client\untar_toolchains.vcxproj">
<ProjectReference Include="..\native_client\prep_nacl_sdk.vcxproj">
<ProjectReference Include="..\native_client\crt_init_32.vcxproj">
<ProjectReference Include="..\native_client\crt_fini_32.vcxproj">
<ProjectReference Include="..\native_client\crt_init_64.vcxproj">
<ProjectReference Include="..\native_client\crt_fini_64.vcxproj">
<ProjectReference Include="..\base\base_untrusted.vcxproj">
<ProjectReference Include="..\gpu\command_buffer\gles2_utils_untrusted.vcxproj">
<ProjectReference Include="..\third_party\khronos\khronos_headers.vcxproj">
<ProjectReference Include="..\gpu\command_buffer_client_untrusted.vcxproj">
<ProjectReference Include="..\gpu\command_buffer_common_untrusted.vcxproj">
<ProjectReference Include="..\gpu\gles2_implementation_untrusted.vcxproj">
<ProjectReference Include="..\gpu\gles2_cmd_helper_untrusted.vcxproj">
<ProjectReference Include="..\gpu\gpu_ipc_untrusted.vcxproj">
<ProjectReference Include="..\ipc\ipc_untrusted.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_shared_untrusted.vcxproj">
<ProjectReference Include="..\media\shared_memory_support_untrusted.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_ipc_untrusted.vcxproj">
<ProjectReference Include="..\components\tracing_untrusted.vcxproj">
<ProjectReference Include="..\native_client\src\untrusted\irt\irt_browser_lib.vcxproj">
<ProjectReference Include="..\native_client\src\untrusted\nacl\nacl_lib_newlib.vcxproj">
<ProjectReference Include="..\native_client\src\shared\srpc\srpc_lib.vcxproj">
<ProjectReference Include="..\native_client\src\shared\platform\platform_lib.vcxproj">
<ProjectReference Include="..\native_client\src\untrusted\nacl\imc_syscalls_lib.vcxproj">
<ProjectReference Include="..\native_client\src\shared\gio\gio_lib.vcxproj">
<ProjectReference Include="..\ppapi\native_client\src\untrusted\pnacl_irt_shim\pnacl_irt_shim.vcxproj">
<ProjectReference Include="..\ppapi\native_client\src\untrusted\pnacl_support_extension\pnacl_support_extension.vcxproj">
<ProjectReference Include="..\third_party\smhasher\murmurhash3.vcxproj">
<ProjectReference Include="..\content\content_utility.vcxproj">
Include="..\content\content.vcxproj">
<ProjectReference Include="content_resources.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="..\base\base_i18n.vcxproj">
<ProjectReference Include="..\crypto\crypto.vcxproj">
<ProjectReference Include="..\ui\ui.vcxproj">
<ProjectReference Include="browser\speech\proto\speech_proto.vcxproj">
<ProjectReference Include="..\base\base_static.vcxproj">
<ProjectReference Include="..\google_apis\google_apis.vcxproj">
<ProjectReference Include="..\net\net.vcxproj">
<ProjectReference Include="..\skia\skia.vcxproj">
<ProjectReference Include="..\sql\sql.vcxproj">
<ProjectReference Include="..\third_party\re2\re2.vcxproj">
<ProjectReference Include="..\third_party\zlib\zip.vcxproj">
<ProjectReference Include="..\third_party\zlib\zlib.vcxproj">
<ProjectReference Include="..\ui\snapshot\snapshot.vcxproj">
<ProjectReference Include="..\ui\ui_resources.vcxproj">
<ProjectReference Include="..\components\tracing.vcxproj">
<ProjectReference Include="..\url\url_lib.vcxproj">
<ProjectReference Include="..\media\media.vcxproj">
<ProjectReference Include="..\third_party\icu\icuuc.vcxproj">
<ProjectReference Include="..\ui\shell_dialogs.vcxproj">
<ProjectReference Include="..\webkit\common\user_agent\user_agent.vcxproj">
<ProjectReference Include="..\ui\gl\gl.vcxproj">
<ProjectReference Include="..\jingle\jingle_glue.vcxproj">
<ProjectReference Include="..\third_party\WebKit\public\blink.vcxproj">
<ProjectReference Include="..\third_party\icu\icui18n.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle.vcxproj">
<ProjectReference Include="..\third_party\npapi\npapi.vcxproj">
<ProjectReference Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
<ProjectReference Include="..\ui\native_theme\native_theme.vcxproj">
<ProjectReference Include="..\ui\surface\surface.vcxproj">
<ProjectReference Include="..\v8\tools\gyp\v8.vcxproj">
<ProjectReference Include="..\webkit\common\gpu\webkit_gpu.vcxproj">
<ProjectReference Include="..\webkit\common\webkit_common.vcxproj">
<ProjectReference Include="..\webkit\renderer\compositor_bindings\webkit_compositor_bindings.vcxproj">
<ProjectReference Include="..\webkit\renderer\compositor_bindings\webkit_compositor_support.vcxproj">
<ProjectReference Include="..\webkit\renderer\webkit_renderer.vcxproj">
<ProjectReference Include="..\webkit\webkit_storage_common.vcxproj">
<ProjectReference Include="..\webkit\support\glue.vcxproj">
<ProjectReference Include="..\webkit\support\glue_child.vcxproj">
<ProjectReference Include="..\sandbox\sandbox.vcxproj">
<ProjectReference Include="browser\devtools\devtools_resources.vcxproj">
<ProjectReference Include="..\cc\cc.vcxproj">
<ProjectReference Include="..\net\http_server.vcxproj">
<ProjectReference Include="..\printing\printing.vcxproj">
<ProjectReference Include="..\third_party\leveldatabase\leveldatabase.vcxproj">
<ProjectReference Include="..\webkit\webkit_storage_browser.vcxproj">
<ProjectReference Include="..\webkit\webkit_resources.vcxproj">
<ProjectReference Include="..\webkit\webkit_strings.vcxproj">
<ProjectReference Include="browser\tracing\tracing_resources.vcxproj">
<ProjectReference Include="..\third_party\libyuv\libyuv.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\desktop_capture.vcxproj">
<ProjectReference Include="..\third_party\iaccessible2\iaccessible2.vcxproj">
<ProjectReference Include="..\third_party\isimpledom\isimpledom.vcxproj">
<ProjectReference Include="..\win8\win8_util.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_ipc.vcxproj">
<ProjectReference Include="..\third_party\flac\libflac.vcxproj">
<ProjectReference Include="..\third_party\speex\libspeex.vcxproj">
<ProjectReference Include="..\gpu\gles2_c_lib.vcxproj">
<ProjectReference Include="..\gpu\gles2_implementation.vcxproj">
<ProjectReference Include="..\gpu\gpu_ipc.vcxproj">
<ProjectReference Include="..\ipc\ipc.vcxproj">
<ProjectReference Include="..\media\shared_memory_support.vcxproj">
<ProjectReference Include="..\third_party\WebKit\public\blink_minimal.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_shared.vcxproj">
<ProjectReference Include="..\gpu\command_buffer_service.vcxproj">
<ProjectReference Include="..\third_party\angle_dx11\src\libEGL.vcxproj">
<ProjectReference Include="..\third_party\angle_dx11\src\libGLESv2.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle_webrtc.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libpeerconnection.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audio_device.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_host.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_proxy.vcxproj">
<ProjectReference Include="..\third_party\protobuf\protobuf_lite.vcxproj">
<ProjectReference Include="..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
<ProjectReference Include="..\third_party\zlib\minizip.vcxproj">
<ProjectReference Include="..\third_party\expat\expat.vcxproj">
<ProjectReference Include="..\net\third_party\nss\libssl.vcxproj">
<ProjectReference Include="..\third_party\nss\nspr.vcxproj">
<ProjectReference Include="..\third_party\nss\nss.vcxproj">
<ProjectReference Include="..\third_party\jsoncpp\jsoncpp.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle_p2p_constants.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\web\webkit.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\web\blink_common.vcxproj">
<ProjectReference Include="..\testing\gtest.vcxproj">
<ProjectReference Include="..\testing\gtest_prod.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\devtools_html.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\devtools_extension_api.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\frontend_protocol_sources.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_elements_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_resources_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_network_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_scripts_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_timeline_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_profiles_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_audits_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_codemirror_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_layers_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_heap_snapshot_worker_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_script_formatter_worker_js.vcxproj">
<ProjectReference Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_css.vcxproj">
<ProjectReference Include="..\third_party\snappy\snappy.vcxproj">
<ProjectReference Include="..\third_party\trace-viewer\generate_about_tracing.vcxproj">
<ProjectReference Include="browser\tracing\generate_tracing_grd.vcxproj">
<ProjectReference Include="..\third_party\libjpeg_turbo\libjpeg.vcxproj">
<ProjectReference Include="..\third_party\webrtc\system_wrappers\source\system_wrappers.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\desktop_capture_differ_sse2.vcxproj">
<ProjectReference Include="..\gpu\gpu.vcxproj">
<ProjectReference Include="..\third_party\libjingle\libjingle_webrtc_common.vcxproj">
<ProjectReference Include="..\third_party\libsrtp\libsrtp.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\media_file.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_capture_module.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\webrtc_utility.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audio_coding_module.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\CNG.vcxproj">
<ProjectReference Include="..\third_party\webrtc\common_audio\common_audio.vcxproj">
<ProjectReference Include="..\third_party\webrtc\common_audio\common_audio_sse2.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\G711.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\G722.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\iLBC.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\iSAC.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\iSACFix.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\PCM16B.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\NetEq.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\webrtc_opus.vcxproj">
<ProjectReference Include="..\third_party\opus\opus.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\webrtc_video_coding.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\webrtc_i420.vcxproj">
<ProjectReference Include="..\third_party\webrtc\common_video\common_video.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_coding\utility\video_coding_utility.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_coding\codecs\vp8\webrtc_vp8.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx.vcxproj">
<ProjectReference Include="..\third_party\libvpx\gen_asm_offsets_vp8.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_asm_offsets_vp8.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_mmx.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_sse2.vcxproj">
<ProjectReference Include="..\third_party\libvpx\libvpx_intrinsics_ssse3.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_render_module.vcxproj">
<ProjectReference Include="..\third_party\usrsctp\usrsctplib.vcxproj">
<ProjectReference Include="..\third_party\webrtc\video_engine\video_engine_core.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\rtp_rtcp.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\paced_sender.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\remote_bitrate_estimator.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\remote_bitrate_estimator\rbe_components.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\bitrate_controller.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_processing.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\video_processing_sse2.vcxproj">
<ProjectReference Include="..\third_party\webrtc\voice_engine\voice_engine.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audio_conference_mixer.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audio_processing.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audioproc_debug_proto.vcxproj">
<ProjectReference Include="..\third_party\webrtc\modules\audio_processing_sse2.vcxproj">
Include="chrome_nacl_win64.vcxproj">
<ProjectReference Include="app\policy\policy_win64.vcxproj">
<ProjectReference Include="chrome_version_resources.vcxproj">
<ProjectReference Include="installer_util_nacl_win64.vcxproj">
<ProjectReference Include="..\breakpad\breakpad_handler_win64.vcxproj">
<ProjectReference Include="..\breakpad\breakpad_sender_win64.vcxproj">
<ProjectReference Include="..\base\base_i18n_nacl_win64.vcxproj">
<ProjectReference Include="..\base\base_nacl_win64.vcxproj">
<ProjectReference Include="..\base\base_static_win64.vcxproj">
<ProjectReference Include="..\base\third_party\dynamic_annotations\dynamic_annotations_win64.vcxproj">
<ProjectReference Include="..\components\breakpad_win64.vcxproj">
<ProjectReference Include="common_constants_win64.vcxproj">
<ProjectReference Include="..\components\nacl_win64.vcxproj">
<ProjectReference Include="..\crypto\crypto_nacl_win64.vcxproj">
<ProjectReference Include="..\ipc\ipc_win64.vcxproj">
<ProjectReference Include="..\sandbox\sandbox_win64.vcxproj">
<ProjectReference Include="app\policy\cloud_policy_code_generate.vcxproj">
<ProjectReference Include="installer_util_strings.vcxproj">
<ProjectReference Include="..\components\nacl_switches_win64.vcxproj">
<ProjectReference Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\sel_main_chrome64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\sel64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\env_cleanser64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\nacl_error_code64.vcxproj">
<ProjectReference Include="..\native_client\src\shared\gio\gio64.vcxproj">
<ProjectReference Include="..\native_client\src\shared\srpc\nonnacl_srpc64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\debug_stub\debug_stub64.vcxproj">
<ProjectReference Include="..\native_client\src\shared\platform\platform64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\desc\nrd_xfer64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\desc\desc_wrapper64.vcxproj">
<ProjectReference Include="..\native_client\src\shared\imc\imc64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\nacl_base\nacl_base64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\fault_injection\nacl_fault_inject64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\gio\gio_wrapped_desc64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\interval_multiset\nacl_interval64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\perf_counter\nacl_perf_counter64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\platform_qualify\platform_qual_lib64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\cpu_features\cpu_features64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\manifest_name_service_proxy\manifest_proxy64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\threading\thread_interface64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\simple_service\simple_service64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator_x86\nccopy_x86_64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator\validation_cache64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator\validators64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\arch\x86\service_runtime_x86_common64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\validator_ragel\dfa_validate_x86_64.vcxproj">
<ProjectReference Include="..\native_client\src\trusted\service_runtime\arch\x86_64\service_runtime_x86_64.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_shared_win64.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_ipc_win64.vcxproj">
<ProjectReference Include="..\gpu\gpu_ipc_win64.vcxproj">
<ProjectReference Include="..\third_party\khronos\khronos_headers.vcxproj">
<ProjectReference Include="..\ppapi\ppapi_c.vcxproj">
<ProjectReference Include="..\components\nacl_common_win64.vcxproj">
<ProjectReference Include="..\testing\gtest.vcxproj">
<ProjectReference Include="..\testing\gtest_prod.vcxproj">
Include="..\win8\delegate_execute\delegate_execute.vcxproj">
<ProjectReference Include="..\..\base\base.vcxproj">
<ProjectReference Include="..\..\breakpad\breakpad_handler.vcxproj">
<ProjectReference Include="..\..\chrome\installer_util.vcxproj">
<ProjectReference Include="..\..\google_update\google_update.vcxproj">
<ProjectReference Include="..\..\ui\ui.vcxproj">
<ProjectReference Include="..\check_sdk_patch.vcxproj">
<ProjectReference Include="delegate_execute_version_resources.vcxproj">
<ProjectReference Include="..\..\chrome\installer_util_strings.vcxproj">
<ProjectReference Include="..\..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
<ProjectReference Include="..\..\chrome\chrome_resources.vcxproj">
<ProjectReference Include="..\..\chrome\about_credits.vcxproj">
<ProjectReference Include="..\..\chrome\chrome_strings.vcxproj">
<ProjectReference Include="..\..\chrome\common_constants.vcxproj">
<ProjectReference Include="..\..\components\nacl_switches.vcxproj">
<ProjectReference Include="..\..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
<ProjectReference Include="..\..\content\content_common.vcxproj">
<ProjectReference Include="..\..\content\content.vcxproj">
<ProjectReference Include="..\..\content\content_resources.vcxproj">
<ProjectReference Include="..\..\courgette\courgette_lib.vcxproj">
<ProjectReference Include="..\..\third_party\lzma_sdk\lzma_sdk.vcxproj">
<ProjectReference Include="..\..\crypto\crypto.vcxproj">
<ProjectReference Include="..\..\third_party\bspatch\bspatch.vcxproj">
<ProjectReference Include="..\..\third_party\icu\icui18n.vcxproj">
<ProjectReference Include="..\..\third_party\icu\icuuc.vcxproj">
Include="..\win8\metro_driver\metro_driver.vcxproj">
<ProjectReference Include="..\..\base\base.vcxproj">
<ProjectReference Include="..\..\chrome\common_constants.vcxproj">
<ProjectReference Include="..\..\crypto\crypto.vcxproj">
<ProjectReference Include="..\..\google_update\google_update.vcxproj">
<ProjectReference Include="..\..\ipc\ipc.vcxproj">
<ProjectReference Include="..\..\sandbox\sandbox.vcxproj">
<ProjectReference Include="..\..\ui\metro_viewer\metro_viewer_messages.vcxproj">
<ProjectReference Include="..\..\url\url_lib.vcxproj">
<ProjectReference Include="..\check_sdk_patch.vcxproj">
<ProjectReference Include="metro_driver_version_resources.vcxproj">
<ProjectReference Include="..\..\components\nacl_switches.vcxproj">
<ProjectReference Include="..\..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
<ProjectReference Include="..\..\testing\gtest.vcxproj">
<ProjectReference Include="..\..\testing\gtest_prod.vcxproj">
<ProjectReference Include="..\..\base\base_static.vcxproj">
<ProjectReference Include="..\..\skia\skia.vcxproj">
Include="..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj">
<ProjectReference Include="devtools_html.vcxproj">
<ProjectReference Include="devtools_extension_api.vcxproj">
<ProjectReference Include="concatenated_devtools_js.vcxproj">
<ProjectReference Include="concatenated_devtools_elements_js.vcxproj">
<ProjectReference Include="concatenated_devtools_resources_js.vcxproj">
<ProjectReference Include="concatenated_devtools_network_js.vcxproj">
<ProjectReference Include="concatenated_devtools_scripts_js.vcxproj">
<ProjectReference Include="concatenated_devtools_timeline_js.vcxproj">
<ProjectReference Include="concatenated_devtools_profiles_js.vcxproj">
<ProjectReference Include="concatenated_devtools_audits_js.vcxproj">
<ProjectReference Include="concatenated_devtools_codemirror_js.vcxproj">
<ProjectReference Include="concatenated_devtools_layers_js.vcxproj">
<ProjectReference Include="concatenated_heap_snapshot_worker_js.vcxproj">
<ProjectReference Include="concatenated_script_formatter_worker_js.vcxproj">
<ProjectReference Include="concatenated_devtools_css.vcxproj">
Include="..\win8\delegate_execute\delegate_execute_unittests.vcxproj">
<ProjectReference Include="..\..\base\base.vcxproj">
<ProjectReference Include="..\..\base\run_all_unittests.vcxproj">
<ProjectReference Include="..\..\testing\gtest.vcxproj">
<ProjectReference Include="..\..\base\test_support_base.vcxproj">
<ProjectReference Include="..\..\base\base_static.vcxproj">
<ProjectReference Include="..\..\base\base_i18n.vcxproj">
<ProjectReference Include="..\..\testing\gmock.vcxproj">
<ProjectReference Include="..\..\testing\gtest_prod.vcxproj">
<ProjectReference Include="..\..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
Include="packed_resources.vcxproj">
<ProjectReference Include="chrome_resources.vcxproj">
<ProjectReference Include="chrome_strings.vcxproj">
<ProjectReference Include="platform_locale_settings.vcxproj">
<ProjectReference Include="theme_resources.vcxproj">
<ProjectReference Include="..\components\component_strings.vcxproj">
<ProjectReference Include="..\net\net_resources.vcxproj">
<ProjectReference Include="..\ui\base\strings\ui_strings.vcxproj">
<ProjectReference Include="..\ui\ui_resources.vcxproj">
<ProjectReference Include="..\ash\ash_strings.vcxproj">
<ProjectReference Include="..\content\content_resources.vcxproj">
<ProjectReference Include="..\device\bluetooth\device_bluetooth_strings.vcxproj">
<ProjectReference Include="..\webkit\webkit_resources.vcxproj">
<ProjectReference Include="..\webkit\webkit_strings.vcxproj">
Include="installer_util.vcxproj">
<ProjectReference Include="installer_util_strings.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="chrome_resources.vcxproj">
<ProjectReference Include="chrome_strings.vcxproj">
<ProjectReference Include="..\content\content_common.vcxproj">
<ProjectReference Include="..\crypto\crypto.vcxproj">
<ProjectReference Include="..\third_party\icu\icui18n.vcxproj">
<ProjectReference Include="..\third_party\icu\icuuc.vcxproj">
Include="..\win8\metro_driver\metro_driver_unittests.vcxproj">
<ProjectReference Include="..\..\base\base.vcxproj">
<ProjectReference Include="..\..\testing\gtest.vcxproj">
<ProjectReference Include="metro_driver.vcxproj">
<ProjectReference Include="..\..\testing\gtest_prod.vcxproj">
Include="..\base\base.vcxproj">
<ProjectReference Include="base_static.vcxproj">
<ProjectReference Include="allocator\allocator_extension_thunks.vcxproj">
<ProjectReference Include="..\testing\gtest_prod.vcxproj">
<ProjectReference Include="..\third_party\modp_b64\modp_b64.vcxproj">
<ProjectReference Include="third_party\dynamic_annotations\dynamic_annotations.vcxproj">
Include="..\crypto\crypto.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
<ProjectReference Include="..\third_party\nss\nspr.vcxproj">
<ProjectReference Include="..\third_party\nss\nss.vcxproj">
Include="app\policy\cloud_policy_proto_generated_compile.vcxproj">
<ProjectReference Include="cloud_policy_code_generate.vcxproj">
<ProjectReference Include="..\..\..\third_party\protobuf\protoc.vcxproj">
<ProjectReference Include="..\..\..\third_party\protobuf\protobuf_lite.vcxproj">
Include="theme_resources.vcxproj">
<ProjectReference Include="chrome_unscaled_resources.vcxproj">
<ProjectReference Include="theme_resources_gen.vcxproj">
<ProjectReference Include="..\ui\ui_resources.vcxproj">
Include="app\policy\policy.vcxproj">
<ProjectReference Include="cloud_policy_code_generate.vcxproj">
<ProjectReference Include="cloud_policy_proto_generated_compile.vcxproj">
<ProjectReference Include="..\..\..\base\base.vcxproj">
<ProjectReference Include="..\..\..\third_party\protobuf\protobuf_lite.vcxproj">
Include="chrome_extra_resources.vcxproj">
<ProjectReference Include="..\content\browser\devtools\devtools_resources.vcxproj">
<ProjectReference Include="..\content\browser\tracing\tracing_resources.vcxproj">
Include="..\content\browser\tracing\tracing_resources.vcxproj">
<ProjectReference Include="..\..\..\third_party\trace-viewer\generate_about_tracing.vcxproj">
<ProjectReference Include="generate_tracing_grd.vcxproj">
Include="..\content\content_common.vcxproj">
<ProjectReference Include="content.vcxproj">
<ProjectReference Include="content_resources.vcxproj">
Include="policy_path_parser.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="app\policy\policy.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_js.vcxproj">
<ProjectReference Include="devtools_html.vcxproj">
<ProjectReference Include="frontend_protocol_sources.vcxproj">
Include="common_constants.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
<ProjectReference Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
Include="..\courgette\courgette_lib.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
Include="..\content\browser\tracing\generate_tracing_grd.vcxproj">
<ProjectReference Include="..\..\..\third_party\trace-viewer\generate_about_tracing.vcxproj">
Include="chrome_resources.vcxproj">
<ProjectReference Include="about_credits.vcxproj">
Include="metro_utils.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
Include="..\third_party\icu\icui18n.vcxproj">
<ProjectReference Include="icuuc.vcxproj">
Include="..\third_party\icu\icuuc.vcxproj">
<ProjectReference Include="icudata.vcxproj">
Include="..\testing\gtest.vcxproj">
<ProjectReference Include="gtest_prod.vcxproj">
Include="..\content\browser\devtools\devtools_resources.vcxproj">
<ProjectReference Include="..\..\..\third_party\WebKit\Source\devtools\generate_devtools_grd.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_css.vcxproj">
<ProjectReference Include="devtools_html.vcxproj">
Include="..\components\breakpad_component.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
Include="..\sandbox\sandbox.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
Include="packed_extra_resources.vcxproj">
<ProjectReference Include="chrome_extra_resources.vcxproj">
Include="chrome_dll.vcxproj">
<ProjectReference Include="chrome_main_dll.vcxproj">
Include="chrome_process_finder.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
Include="image_pre_reader.vcxproj">
<ProjectReference Include="..\base\base.vcxproj">
The Following are all None:
Include="..\third_party\adobe\flash\flapper_binaries.vcxproj">
Include="..\third_party\widevine\cdm\widevinecdmadapter.vcxproj">
Include="chrome_version_resources.vcxproj">
Include="..\breakpad\breakpad_handler.vcxproj">
Include="..\breakpad\breakpad_sender.vcxproj">
Include="..\win8\metro_driver\metro_driver_version_resources.vcxproj">
Include="..\win8\delegate_execute\delegate_execute_version_resources.vcxproj">
Include="..\third_party\WebKit\Source\devtools\devtools_html.vcxproj">
Include="..\third_party\WebKit\Source\devtools\devtools_extension_api.vcxproj">
Include="..\third_party\WebKit\Source\devtools\frontend_protocol_sources.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_elements_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_resources_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_network_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_scripts_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_timeline_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_profiles_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_audits_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_codemirror_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_devtools_layers_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_heap_snapshot_worker_js.vcxproj">
Include="..\third_party\WebKit\Source\devtools\concatenated_script_formatter_worker_js.vcxproj">
Include="..\third_party\trace-viewer\generate_about_tracing.vcxproj">
Include="about_credits.vcxproj">
Include="chrome_strings.vcxproj">
Include="platform_locale_settings.vcxproj">
Include="chrome_unscaled_resources.vcxproj">
Include="theme_resources_gen.vcxproj">
Include="..\ui\ui_resources.vcxproj">
Include="..\components\component_strings.vcxproj">
Include="..\net\net_resources.vcxproj">
Include="..\ui\base\strings\ui_strings.vcxproj">
Include="..\ash\ash_strings.vcxproj">
Include="..\content\content_resources.vcxproj">
Include="..\device\bluetooth\device_bluetooth_strings.vcxproj">
Include="..\webkit\webkit_resources.vcxproj">
Include="..\webkit\webkit_strings.vcxproj">
Include="..\components\nacl_switches.vcxproj">
Include="..\third_party\widevine\cdm\widevine_cdm_version_h.vcxproj">
Include="app\policy\cloud_policy_code_generate.vcxproj">
Include="..\third_party\protobuf\protobuf_lite.vcxproj">
Include="installer_util_strings.vcxproj">
Include="..\base\third_party\dynamic_annotations\dynamic_annotations.vcxproj">
Include="..\third_party\lzma_sdk\lzma_sdk.vcxproj">
Include="..\third_party\bspatch\bspatch.vcxproj">
Include="..\testing\gtest_prod.vcxproj">
Include="..\base\base_static.vcxproj">

posted @ 2013-12-20 17:48  一ke小小草  阅读(1676)  评论(0编辑  收藏  举报