-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: update test binary size target (#212)
Signed-off-by: Jose Nino [email protected] Description: after #173 landed this target broke due to the breaking API change. This target will be added to CI once #181 closes, so breakages like this will not go undected. Risk Level: low - updating API, deleting old build rules. Signed-off-by: JP Simard <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "main_interface.h" | ||
#include "library/common/main_interface.h" | ||
|
||
// NOLINT(namespace-envoy) | ||
|
||
// This binary is used to perform stripped down binary size investigations of the Envoy codebase. | ||
// Please refer to the development docs for more information: | ||
// https://envoy-mobile.github.io/docs/envoy-mobile/latest/development/performance/binary_size.html | ||
int main() { return run_envoy(nullptr); } | ||
int main() { return run_envoy(nullptr, nullptr); } |