summaryrefslogtreecommitdiff
path: root/third_party/boringssl
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2022-06-14 10:54:53 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-21 17:34:45 +0000
commit28d0b75b708d3d60812bac50e6dae14599b3fe94 (patch)
treec9836bac2053a08a326bed06ccaebbfc03759b35 /third_party/boringssl
parent19ee52c413b5a66ff02010a6b8112a37dd24ed41 (diff)
downloadchrome-ec-28d0b75b708d3d60812bac50e6dae14599b3fe94.tar.gz
third_party/boringssl: Remove unused header
When compiling with C++ (and using the C stdlib), this include is not found: include/aes-gcm.h:53:10: fatal error: 'endian.h' file not found ^~~~~~~~~~ Remove the header since it's not actually used in these files. BRANCH=none BUG=b:234181908 TEST=./util/compare_build.sh -b all -j 120 => MATCH Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: I2f90b42cbfd4ca5334bfa400c9124755c4b1cf0d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3705695 Reviewed-by: Diana Z <dzigterman@chromium.org>
Diffstat (limited to 'third_party/boringssl')
-rw-r--r--third_party/boringssl/common/aes-gcm.c1
-rw-r--r--third_party/boringssl/include/aes-gcm.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/third_party/boringssl/common/aes-gcm.c b/third_party/boringssl/common/aes-gcm.c
index edb98b88b3..8fe5f75307 100644
--- a/third_party/boringssl/common/aes-gcm.c
+++ b/third_party/boringssl/common/aes-gcm.c
@@ -48,7 +48,6 @@
#include "aes-gcm.h"
#include "common.h"
-#include "endian.h"
#include "util.h"
#define STRICT_ALIGNMENT 1
diff --git a/third_party/boringssl/include/aes-gcm.h b/third_party/boringssl/include/aes-gcm.h
index e3ef457224..77ca52a3ed 100644
--- a/third_party/boringssl/include/aes-gcm.h
+++ b/third_party/boringssl/include/aes-gcm.h
@@ -50,7 +50,6 @@
#define __CROS_EC_AES_GCM_H
#include "common.h"
-#include "endian.h"
#include "util.h"
// block128_f is the type of a 128-bit, block cipher.