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">
Chromium之工程依赖关系.的更多相关文章
- 微服务下 Spring Boot Maven 工程依赖关系管理
单体 Spring Boot Maven 工程 最基本的 pom.xml 包含工程信息.Spring Boot 父工程.属性配置.依赖包.构建插件 <?xml version="1.0 ...
- iOS多工程依赖
导入准备工作 1.建立一个Framework & Library->Cocoa Touch Static Library 取名A,并在A里新建一个类用来测试 2.建立一个demo工程B ...
- 类图和对象图教程-类(Class)、接口(Interface)、协作(collaboration)、依赖关系(Dependency)、泛化关系(Generalization)、关联关系(Association)以及实现关系(Realization)
类图的概念 (转) 一.概述 类图(Class Diagram)是描述类.接口.协作以及它们之间关系的图,用来显示系统中各个类的静态结构.类图是定义其他图的基础,在类图基础上,可以使用状态图.协作图. ...
- 【转】Unity3D中脚本的执行顺序和编译顺序(vs工程引用关系)
http://www.cnblogs.com/champ/p/execorder.html 在Unity中可以同时创建很多脚本,并且可以分别绑定到不同的游戏对象上,它们各自都在自己的生命周期中运行.与 ...
- C/C++源代码的Include依赖关系图
前一篇博文中我曾仔细介绍过如何查看C/C++代码的依赖项关系图,在这篇文章中我将会介绍如何使用Visualization and Modeling Feature Pack 工具包,查看C/C++源代 ...
- Maven之(九)依赖关系
在maven的管理体系中,各个项目组成了一个复杂的关系网,但是每个项目都是平等的,是个没有贵贱高低,众生平等的世界,全球每个项目从理论上来说都可以相互依赖.就是说,你跟开发spring的大牛们平起平坐 ...
- spring framework体系结构及内部各模块jar之间的maven依赖关系
很多人都在用spring开发java项目,但是配置maven依赖的时候并不能明确要配置哪些spring的jar,经常是胡乱添加一堆,编译或运行报错就继续配置jar依赖,导致spring依赖混乱,甚至下 ...
- [转] spring framework体系结构及内部各模块jar之间的maven依赖关系
很多人都在用spring开发java项目,但是配置maven依赖的时候并不能明确要配置哪些spring的jar,经常是胡乱添加一堆,编译或运行报错就继续配置jar依赖,导致spring依赖混乱,甚至下 ...
- (转)Unity3D中脚本的执行顺序和编译顺序(vs工程引用关系)
自:http://www.cnblogs.com/champ/p/execorder.html 在Unity中可以同时创建很多脚本,并且可以分别绑定到不同的游戏对象上,它们各自都在自己的生命周期中运行 ...
随机推荐
- Spring的声明式事务----Annotation注解方式(2)
使用步骤: 步骤一.在spring配置文件中引入<tx:>命名空间<beans xmlns="http://www.springframework.org/schema/b ...
- Java分享笔记:自定义枚举类 & 使用enum关键字定义枚举类
在JDK1.5之前没有enum关键字,如果想使用枚举类,程序员需要根据Java语言的规则自行设计.从JDK1.5开始,Java语言添加了enum关键字,可以通过该关键字方便地定义枚举类.这种枚举类有自 ...
- ABAP术语-Function Builder
Function Builder 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/03/1063196.html Tool for creat ...
- 使用php+gmail 发送邮件
<?php namespace app\index\controller; use think\Controller; use PHPMailer\PHPMailer; class Test e ...
- jenkins部署记录
环境规划 主机分配 192.168.2.139 : gitlab 192.168.2.141 : jenkins 192.168.2.142 : haproxy01 192.168.2.143 :ha ...
- Linux分享笔记:系统状态检测命令小结
作为一名合格的运维人员,要能很好地了解Linux服务器,要能熟练查看Linux系统的运行状态.以下是常用到的Linux系统状态检测命令. 1. ifconfig:用于获取网卡配置与网络状态等信息.通常 ...
- 配置Github秘钥
Git安装完成后,需要手动配置ssh密钥 配置github的ssh密钥: (1)打开Git Bash查看电脑上是否已经存在SSH密钥: 输入 cd ~/.ssh 若如上图显示无法找到该文件则要创建新的 ...
- 介绍三种PHP加密解密算法
PHP加密解密算法 这里主要介绍三种常用的加密解密算法:方法一: /** * @param $string 要加密/解密的字符串 * @param string $operation 类型,ENCOD ...
- C# Regex正则验证规则
using System; using System.Text.RegularExpressions; namespace MetarCommonSupport { /// <summary&g ...
- git的初始配置(简易的命令行)
Git 全局设置: git config --global user.name "You name" git config --global user.email "Yo ...