Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: tools/android/memtrack_helper/BUILD.gn

Issue 2389883004: Benchmark tools: Android memtrack_helper meaningful errors. (Closed)
Patch Set: nit Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/android/memtrack_helper/memtrack_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/memtrack_helper/BUILD.gn
diff --git a/tools/android/memtrack_helper/BUILD.gn b/tools/android/memtrack_helper/BUILD.gn
index 5948cb575881606311dc6debcf87400bf5a595b1..e41a0c87240aa3a38846fd5de2511ee8db2be6ba 100644
--- a/tools/android/memtrack_helper/BUILD.gn
+++ b/tools/android/memtrack_helper/BUILD.gn
@@ -3,13 +3,14 @@
# found in the LICENSE file.
# Unwind tables create a dependency on libc++. By removing them
-# the final binary will not require anything more than libc and libdl.
+# the final binary will not require anything more than libc, libdl and liblog.
# This makes its deployment easier in component=shared_library mode.
config("android_binary_no_libcpp_config") {
cflags = [
"-fno-unwind-tables",
"-fno-asynchronous-unwind-tables",
]
+ libs = [ "log" ]
}
executable("memtrack_helper") {
« no previous file with comments | « no previous file | tools/android/memtrack_helper/memtrack_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698