diff options
author | Jonathan Wright <jonathan.wright@arm.com> | 2020-07-23 16:34:26 +0100 |
---|---|---|
committer | Jonathan Wright <jonathan.wright@arm.com> | 2020-08-10 14:51:20 +0100 |
commit | 9d4f8005bc6c888e66b00fd00188531ee9bd3344 (patch) | |
tree | 27e13782e9775d24e581346bbce1c109432cbd1a | |
parent | f7731126b8b532d9901f1e3d5386910b290cf87d (diff) |
Remove duplicate MSan check
Removes duplicate MSan check in the turbojpeg build target definition.
For MSan builds, the check added a second copy of the jsimd_none.c
file. This causes a linker error, and subsequently a build failure.
Bug: 993876
Change-Id: I6782650d70329eb3628c13b23bd843ef0fa43694
-rw-r--r-- | BUILD.gn | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -296,14 +296,6 @@ static_library("turbojpeg") { public_deps = [ ":libjpeg", ] - - # MemorySanitizer doesn't support assembly code, so keep it disabled in - # MSan builds for now. - if (is_msan) { - sources += [ "jsimd_none.c" ] - } else { - public_deps += [ ":simd" ] - } } if (build_with_chromium) { |