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

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: nits 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') | no next file with comments »
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..cf0a0e95d68545d1c6217b621d3cd3f0a39ec1c5 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,32 @@
},
},
},
+ {
+ 'target_name': 'chrome_elf_unittests',
+ 'type': 'executable',
+ 'sources': [
+ 'ntdll_cache_unittest.cc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ 'chrome_elf_lib',
+ '<(DEPTH)/base/base.gyp:run_all_unittests',
+ '<(DEPTH)/testing/gtest.gyp:gtest',
+ ],
+ },
+ {
+ '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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698