Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8736)

Unified Diff: chrome_elf/chrome_elf.gyp

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: config fix Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome_elf/chrome_elf.gyp
diff --git a/chrome_elf/chrome_elf.gyp b/chrome_elf/chrome_elf.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..d8e5c95dae04d54d4a38ab955839c0f88a16d0bf
--- /dev/null
+++ b/chrome_elf/chrome_elf.gyp
@@ -0,0 +1,74 @@
+# 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',
+ ],
+ 'actions' : [
+ { # Construct a manifest file declaring chrome.exe's dependency on
grt (UTC plus 2) 2013/11/07 03:04:23 chrome_elf doesn't need these, does it? if i under
+ # chrome_elf.dll. This will be merged into chrome.exe.manifest and
+ # embedded into chrome.exe when it is built.
+ 'action_name': 'chrome_exe_manifest',
+ 'variables': {
+ 'template_input_path':
+ 'chrome_exe_manifest.template',
+ },
+ 'inputs': [
+ '<(template_input_path)',
+ '<(version_path)',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest',
+ ],
+ 'action': [
+ 'python', '<(version_py_path)',
+ '-f', '<(version_path)',
+ '<(template_input_path)',
+ '<@(_outputs)',
+ ],
+ 'message': 'Generating <@(_outputs)'
+ },
+ { # Construct a manifest file (with the same name as the version_dir) so
+ # that chrome.exe identifies the version_dir as an assembly. This will
+ # be copied over to the version_dir by the installer script.
+ 'action_name': 'version_assembly_manifest',
+ 'variables': {
+ 'template_input_path':
+ 'version_assembly_manifest.template',
+ },
+ 'inputs': [
+ '<(template_input_path)',
+ '<(version_path)',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/<(version_full).manifest',
+ ],
+ 'action': [
+ 'python', '<(version_py_path)',
+ '-f', '<(version_path)',
+ '<(template_input_path)',
+ '<@(_outputs)',
+ ],
+ 'message': 'Generating <@(_outputs)'
+ },
+ ],
+ },
+ ],
+}
« chrome_elf/README ('K') | « chrome_elf/chrome_elf.def ('k') | chrome_elf/chrome_elf_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698