diff options
author | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 10:01:01 +0000 |
---|---|---|
committer | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 10:01:01 +0000 |
commit | 91f0755c0f15ae1f49dc2d38309f9c5882945a18 (patch) | |
tree | 7072b3d791f6f811300eafac5b55b71d87340085 /chrome_elf/chrome_elf.gyp | |
parent | a644bc199536de369b6a9feb66dba1b4f2b69e0a (diff) | |
download | chromium_src-91f0755c0f15ae1f49dc2d38309f9c5882945a18.zip chromium_src-91f0755c0f15ae1f49dc2d38309f9c5882945a18.tar.gz chromium_src-91f0755c0f15ae1f49dc2d38309f9c5882945a18.tar.bz2 |
Chrome Early Loading Framework
chrome_elf.dll is shipped in Chrome's version directory to
ease updates, and is loaded early in chrome.exe's lifetime
by making it a private assembly in a subfolder of
chrome.exe's folder (see
http://msdn.microsoft.com/library/aa374224.aspx).
BUG= http://crosbug.com/p/23889
Review URL: https://codereview.chromium.org/53793002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_elf/chrome_elf.gyp')
-rw-r--r-- | chrome_elf/chrome_elf.gyp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chrome_elf/chrome_elf.gyp b/chrome_elf/chrome_elf.gyp new file mode 100644 index 0000000..c32f710 --- /dev/null +++ b/chrome_elf/chrome_elf.gyp @@ -0,0 +1,26 @@ +# Copyright 2013 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +{ + 'variables': { + 'chromium_code': 1, + }, + 'includes': [ + '../build/win_precompile.gypi', + '../chrome/version.gypi', + ], + 'targets': [ + { + 'target_name': 'chrome_elf', + 'type': 'shared_library', + 'include_dirs': [ + '..', + ], + 'sources': [ + 'chrome_elf.def', + 'chrome_elf_main.cc', + 'chrome_elf_main.h', + ], + }, + ], +}
\ No newline at end of file |