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

Unified Diff: chrome/chrome_syzygy.gypi

Issue 2126673002: Move the Syzygy scripts out of //chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the GYP files. Created 4 years, 5 months 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 | « build/win/syzygy/syzygy.gni ('k') | chrome/installer/mini_installer/BUILD.gn » ('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 666e07cbe8bcd0d4a827a6806360563292cd6c01..949e21353c2a99fc71ba2489b90cb286b66abcea 100644
--- a/chrome/chrome_syzygy.gypi
+++ b/chrome/chrome_syzygy.gypi
@@ -23,7 +23,7 @@
{
'action_name': 'Reorder Chrome with Syzygy',
'inputs': [
- '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
+ '<(DEPTH)/build/win/syzygy/reorder.py',
'<(PRODUCT_DIR)/<(dll_name).dll',
'<(PRODUCT_DIR)/<(dll_name).dll.pdb',
],
@@ -33,7 +33,7 @@
],
'action': [
'python',
- '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
+ '<(DEPTH)/build/win/syzygy/reorder.py',
'--input_executable', '<(PRODUCT_DIR)/<(dll_name).dll',
'--input_symbol', '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
'--destination_dir', '<(dest_dir)',
@@ -47,8 +47,8 @@
{
'action_name': 'Instrument Chrome with SyzyAsan',
'inputs': [
- '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
- '<(DEPTH)/chrome/tools/build/win/syzygy/'
+ '<(DEPTH)/build/win/syzygy/instrument.py',
+ '<(DEPTH)/build/win/syzygy/'
'syzyasan-instrumentation-filter.txt',
'<(PRODUCT_DIR)/<(dll_name).dll',
],
@@ -59,13 +59,12 @@
],
'action': [
'python',
- '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
+ '<(DEPTH)/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/syzygy/'
- 'syzyasan-instrumentation-filter.txt',
+ '<(DEPTH)/build/win/syzygy/syzyasan-instrumentation-filter.txt',
'--output-filter-file',
'<(dest_dir)/win-syzyasan-filter-<(dll_name).txt.json',
'--destination_dir', '<(dest_dir)',
« no previous file with comments | « build/win/syzygy/syzygy.gni ('k') | chrome/installer/mini_installer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698