Commit 6bc5bd6e authored by Roberto Carrillo's avatar Roberto Carrillo Committed by Commit Bot

[code coverage] Hard code the path of the coverage wrapper input file.

R=jbudorick,stgao,liaoyuke

Change-Id: I5ce2f9c8aa14fe5114220ee2438ea48acec4f8a1
Reviewed-on: https://chromium-review.googlesource.com/c/1327165
Commit-Queue: Roberto Carrillo <robertocn@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606754}
parent 11b1b79d
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
.*.sw? .*.sw?
.DS_Store .DS_Store
.cipd .cipd
.clang-coverage
.classpath .classpath
.cproject .cproject
.gdb_history .gdb_history
......
...@@ -1093,6 +1093,7 @@ ...@@ -1093,6 +1093,7 @@
'clang_code_coverage_trybot': [ 'clang_code_coverage_trybot': [
'gpu_tests', 'use_dummy_lastchange', 'release_trybot', 'clang', 'use_clang_coverage', 'no_symbols', 'gpu_tests', 'use_dummy_lastchange', 'release_trybot', 'clang', 'use_clang_coverage', 'no_symbols',
'partial_clang_instrumentation'
], ],
'clang_release_bot_minimal_symbols_x86': [ 'clang_release_bot_minimal_symbols_x86': [
...@@ -2062,6 +2063,15 @@ ...@@ -2062,6 +2063,15 @@
'gn_args': 'ozone_platform_headless=true', 'gn_args': 'ozone_platform_headless=true',
}, },
# Used to pass the list of files to instrument for coverage to the compile
# wrapper. See:
# https://cs.chromium.org/chromium/build/scripts/slave/recipe_modules/clang_coverage/api.py
# and
# https://cs.chromium.org/chromium/src/docs/clang_code_coverage_wrapper.md
'partial_clang_instrumentation': {
'gn_args': 'coverage_instrumentation_input_file="//.clang-coverage/files_to_instrument.txt"'
},
'pdf_xfa': { 'pdf_xfa': {
'gn_args': 'pdf_enable_xfa=true', 'gn_args': 'pdf_enable_xfa=true',
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment