diff options
author | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-16 00:06:31 +0000 |
---|---|---|
committer | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-16 00:06:31 +0000 |
commit | 75f208729c0811751c9f9c54f6cf27f7869d3330 (patch) | |
tree | 90feb3c6024b0a915be535c9c06e7dee9ce174aa | |
parent | 093e8e8fe2d5b09b8118eabcfaa87068ce5d6873 (diff) | |
download | chromium_src-75f208729c0811751c9f9c54f6cf27f7869d3330.zip chromium_src-75f208729c0811751c9f9c54f6cf27f7869d3330.tar.gz chromium_src-75f208729c0811751c9f9c54f6cf27f7869d3330.tar.bz2 |
Add a manifest to chrome.dll.
Review URL: http://codereview.chromium.org/14128
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7019 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/chrome.dll.manifest | 8 | ||||
-rw-r--r-- | chrome/app/chrome_dll.vcproj | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chrome/app/chrome.dll.manifest b/chrome/app/chrome.dll.manifest new file mode 100644 index 0000000..c2de753 --- /dev/null +++ b/chrome/app/chrome.dll.manifest @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+ <dependency>
+ <dependentAssembly>
+ <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity>
+ </dependentAssembly>
+ </dependency>
+</assembly>
diff --git a/chrome/app/chrome_dll.vcproj b/chrome/app/chrome_dll.vcproj index a1a5fe7..c58a200 100644 --- a/chrome/app/chrome_dll.vcproj +++ b/chrome/app/chrome_dll.vcproj @@ -63,6 +63,7 @@ />
<Tool
Name="VCManifestTool"
+ AdditionalManifestFiles="$(SolutionDir)\app\chrome.dll.manifest"
/>
<Tool
Name="VCXDCMakeTool"
@@ -129,6 +130,7 @@ />
<Tool
Name="VCManifestTool"
+ AdditionalManifestFiles="$(SolutionDir)\app\chrome.dll.manifest"
/>
<Tool
Name="VCXDCMakeTool"
|