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

Unified Diff: chrome_elf/chrome_elf.gypi

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up 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.gypi
diff --git a/chrome_elf/chrome_elf.gypi b/chrome_elf/chrome_elf.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..c8738cf0eb2454115abae793d1296d08096b6eb6
--- /dev/null
+++ b/chrome_elf/chrome_elf.gypi
@@ -0,0 +1,43 @@
+{
+
+ 'includes': [
+ '../chrome/version.gypi',
gab 2013/11/05 16:43:20 This version.gypi stuff is pretty cool :)!
+ ],
+ 'targets': [
+ {
+ 'target_name': 'chrome_elf',
+ 'type': 'shared_library',
+ 'include_dirs': [
+ '..',
gab 2013/11/05 16:43:20 nit: overly indented?
Cait (Slow) 2013/11/06 00:30:15 Done.
+ ],
+ 'sources': [
+ 'chrome_elf.def',
+ 'chrome_elf_main.cc',
+ 'chrome_elf_main.h',
+ ],
+ 'actions' : [
+ {
+ '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 additional manifest files'
gab 2013/11/05 16:43:20 Seems you could do something like 'Generating <@(_
+ },
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698