diff --git a/mobile/library/common/BUILD b/mobile/library/common/BUILD index a42c1f43a0ca..e2d905b844a5 100644 --- a/mobile/library/common/BUILD +++ b/mobile/library/common/BUILD @@ -22,11 +22,3 @@ cc_library( ], deps = [":envoy_main_interface_lib"], ) - -envoy_cc_binary( - name = "test_binary_size", - srcs = ["test_binary_size.cc"], - repository = "@envoy", - stamped = True, - deps = ["envoy_main_interface_lib"], -) diff --git a/mobile/test/performance/test_binary_size.cc b/mobile/test/performance/test_binary_size.cc index 322b3f8c6a52..30ee0c106358 100644 --- a/mobile/test/performance/test_binary_size.cc +++ b/mobile/test/performance/test_binary_size.cc @@ -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); }