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

Unified Diff: chrome_elf/chrome_elf.gyp

Issue 85403005: Cache ntdll exports in ELF (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add back a blank line Created 7 years 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
« no previous file with comments | « no previous file | chrome_elf/chrome_elf_main.cc » ('j') | chrome_elf/ntdll_cache.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_elf/chrome_elf.gyp
diff --git a/chrome_elf/chrome_elf.gyp b/chrome_elf/chrome_elf.gyp
index a8f15bd8418e0fee0a15a4363647f50d7af3805b..5aaff5541eae4bca5319930691397fa488dcce24 100644
--- a/chrome_elf/chrome_elf.gyp
+++ b/chrome_elf/chrome_elf.gyp
@@ -21,6 +21,9 @@
'chrome_elf_main.cc',
'chrome_elf_main.h',
],
+ 'dependencies': [
+ 'chrome_elf_lib',
+ ],
'msvs_settings': {
'VCLinkerTool': {
'BaseAddress': '0x01c20000',
@@ -29,5 +32,17 @@
},
},
},
+ {
+ 'target_name': 'chrome_elf_lib',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'chrome_elf_types.h',
+ 'ntdll_cache.cc',
+ 'ntdll_cache.h',
+ ],
+ },
],
}
« no previous file with comments | « no previous file | chrome_elf/chrome_elf_main.cc » ('j') | chrome_elf/ntdll_cache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698