diff options
author | kochi@google.com <kochi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-23 08:57:54 +0000 |
---|---|---|
committer | kochi@google.com <kochi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-23 08:57:54 +0000 |
commit | 726c1c9a2ba380a63d0ca404933daf8c8cff0c65 (patch) | |
tree | 361c680045bc23b6013e53531679f7f7f98beafe /chrome_elf/chrome_elf.gyp | |
parent | a30dee2e694b7164894b86b680a317964a9f9f16 (diff) | |
download | chromium_src-726c1c9a2ba380a63d0ca404933daf8c8cff0c65.zip chromium_src-726c1c9a2ba380a63d0ca404933daf8c8cff0c65.tar.gz chromium_src-726c1c9a2ba380a63d0ca404933daf8c8cff0c65.tar.bz2 |
Revert 246313 "Use an alternate mechanism for CreateFile calls i..."
This caused reading profile error on Windows8 platform.
> Use an alternate mechanism for CreateFile calls in Chrome
>
> BUG=334379
>
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=245464
>
> Review URL: https://codereview.chromium.org/138593004
TBR=caitkp@chromium.org
Review URL: https://codereview.chromium.org/144333003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_elf/chrome_elf.gyp')
-rw-r--r-- | chrome_elf/chrome_elf.gyp | 46 |
1 files changed, 1 insertions, 45 deletions
diff --git a/chrome_elf/chrome_elf.gyp b/chrome_elf/chrome_elf.gyp index 98da2d7..d011bbb 100644 --- a/chrome_elf/chrome_elf.gyp +++ b/chrome_elf/chrome_elf.gyp @@ -11,35 +11,6 @@ 'blacklist.gypi', ], 'targets': [ - { - 'target_name': 'chrome_redirects', - 'type': 'shared_library', - 'include_dirs': [ - '..', - ], - 'sources': [ - 'chrome_redirects.def', - ], - 'dependencies': [ - 'chrome_elf_lib', - ], - 'msvs_settings': { - 'VCLinkerTool': { - 'BaseAddress': '0x01c10000', - # Set /SUBSYSTEM:WINDOWS. - 'SubSystem': '2', - }, - }, - 'conditions': [ - ['component=="shared_library"', { - # In component builds, all targets depend on chrome_redirects by - # default. Remove it here to avoid a circular dependency. - 'dependencies!': [ - '../chrome_elf/chrome_elf.gyp:chrome_redirects', - ], - }], - ], - }, { 'target_name': 'chrome_elf', 'type': 'shared_library', @@ -54,12 +25,11 @@ 'dependencies': [ 'blacklist', 'chrome_elf_lib', - 'chrome_redirects', ], 'msvs_settings': { 'VCLinkerTool': { 'BaseAddress': '0x01c20000', - # Set /SUBSYSTEM:WINDOWS. + # Set /SUBSYSTEM:WINDOWS for chrome_elf.dll (for consistency). 'SubSystem': '2', 'AdditionalDependencies!': [ 'user32.lib', @@ -76,7 +46,6 @@ 'type': 'executable', 'sources': [ 'blacklist/test/blacklist_test.cc', - 'create_file/chrome_create_file_unittest.cc', 'elf_imports_unittest.cc', 'ntdll_cache_unittest.cc', ], @@ -117,23 +86,10 @@ '..', ], 'sources': [ - 'chrome_elf_constants.cc', - 'chrome_elf_constants.h', 'chrome_elf_types.h', - 'create_file/chrome_create_file.cc', - 'create_file/chrome_create_file.h', 'ntdll_cache.cc', 'ntdll_cache.h', ], - 'conditions': [ - ['component=="shared_library"', { - # In component builds, all targets depend on chrome_redirects by - # default. Remove it here to avoid a circular dependency. - 'dependencies!': [ - '../chrome_elf/chrome_elf.gyp:chrome_redirects', - ], - }], - ], }, ], } |