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

Unified Diff: chrome/chrome_syzygy.gypi

Issue 773253004: Move Syzygy build related things to their own directory with an OWNERS file, and add an allocation … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit. Created 6 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/tools/build/win/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_syzygy.gypi
diff --git a/chrome/chrome_syzygy.gypi b/chrome/chrome_syzygy.gypi
index be0f0b1fdc21abb51ae42968fe4f84063700efaa..b9ac5b651aa7c67f0ddb55adf331cab4cc86ea5b 100644
--- a/chrome/chrome_syzygy.gypi
+++ b/chrome/chrome_syzygy.gypi
@@ -23,6 +23,7 @@
{
'action_name': 'Reorder Chrome with Syzygy',
'inputs': [
+ '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
'<(PRODUCT_DIR)/<(dll_name).dll',
'<(PRODUCT_DIR)/<(dll_name).dll.pdb',
],
@@ -32,7 +33,7 @@
],
'action': [
'python',
- '<(DEPTH)/chrome/tools/build/win/syzygy_reorder.py',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
'--input_executable', '<(PRODUCT_DIR)/<(dll_name).dll',
'--input_symbol', '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
'--destination_dir', '<(dest_dir)',
@@ -46,7 +47,11 @@
{
'action_name': 'Instrument Chrome with SyzyAsan',
'inputs': [
- '<(DEPTH)/chrome/tools/build/win/win-syzyasan-filter.txt',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/'
+ 'syzyasan-allocation-filter.txt',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/'
+ 'syzyasan-instrumentation-filter.txt',
'<(PRODUCT_DIR)/<(dll_name).dll',
],
'outputs': [
@@ -56,14 +61,17 @@
],
'action': [
'python',
- '<(DEPTH)/chrome/tools/build/win/syzygy_instrument.py',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
'--mode', 'asan',
'--input_executable', '<(PRODUCT_DIR)/<(dll_name).dll',
'--input_symbol', '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
'--filter',
- '<(DEPTH)/chrome/tools/build/win/win-syzyasan-filter.txt',
+ '<(DEPTH)/chrome/tools/build/win/syzygy/'
+ 'syzyasan-instrumentation-filter.txt',
'--output-filter-file',
'<(dest_dir)/win-syzyasan-filter-<(dll_name).txt.json',
+ '--allocation-filter-file', '<(DEPTH)/chrome/tools/build/win/syzygy'
+ 'syzyasan-allocation-filter.txt',
'--destination_dir', '<(dest_dir)',
],
},
« no previous file with comments | « no previous file | chrome/tools/build/win/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698