diff options
author | Chris Blume <cblume@chromium.org> | 2020-03-28 00:31:19 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-03-28 00:31:19 +0000 |
commit | 3a4896c4b407b1f6a8ef48e647e1f560ad1c7cc4 (patch) | |
tree | 6eb95a516077ed510a7d06b3f02387c1e211f671 | |
parent | 9195e7c7a484179484cbe162c8a22754002f5bc0 (diff) | |
parent | 7539978e700d41c77cdc7f75acf6f1667389b600 (diff) |
Merge "Switch to NASM for libjpeg_turbo."
-rw-r--r-- | BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,9 +24,9 @@ source_set("libjpeg_headers") { } if (current_cpu == "x86" || current_cpu == "x64") { - import("//third_party/yasm/yasm_assemble.gni") + import("//third_party/nasm/nasm_assemble.gni") - yasm_assemble("simd_asm") { + nasm_assemble("simd_asm") { defines = [] include_dirs = [ "simd/nasm/" ] |