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

Unified Diff: syzygy/integration_tests/integration_tests.gyp

Issue 2981233002: Add .def file for the clang instrumented integration tests dll. (Closed)
Patch Set: Add def file and a flag to the linker to generate the pdb file. Created 3 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 | « no previous file | syzygy/integration_tests/integration_tests_clang_dll.def » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/integration_tests/integration_tests.gyp
diff --git a/syzygy/integration_tests/integration_tests.gyp b/syzygy/integration_tests/integration_tests.gyp
index c4175e3d0a6bd455acf2ebf5bfb13d437d401a52..c76eb3c41194e62df7d7b2cd9a7e381fe69a1d12 100644
--- a/syzygy/integration_tests/integration_tests.gyp
+++ b/syzygy/integration_tests/integration_tests.gyp
@@ -52,6 +52,7 @@
],
'dependencies': [
'crash_for_exception_harness',
+ 'integration_tests_clang_dll',
'integration_tests_dll',
'integration_tests_harness',
'<(src)/base/base.gyp:test_support_base',
@@ -122,13 +123,17 @@
{
'action_name': 'make_integration_tests_clang',
'inputs': ['<@(integration_tests_common_source_files)'],
- 'outputs': ['<(PRODUCT_DIR)/integration_tests_clang_dll.dll'],
+ 'outputs': [
+ '<(PRODUCT_DIR)/integration_tests_clang_dll.dll',
+ '<(PRODUCT_DIR)/integration_tests_clang_dll.pdb'
+ ],
'action': [
'<(python_exe)',
'make_integration_tests_clang.py',
'--output-dir=<(PRODUCT_DIR)',
'--input-files=<(_inputs)',
'--target-name=integration_tests_clang_dll',
+ '--def-file=integration_tests_clang_dll.def'
],
},
],
« no previous file with comments | « no previous file | syzygy/integration_tests/integration_tests_clang_dll.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698