summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2018-01-10 16:38:43 -0800
committerElliott Hughes <enh@google.com>2018-01-10 16:38:43 -0800
commitcd603b1e3a02bf457eb9fe705bc799475abe3308 (patch)
treecc4a656773ef27dcd4c01b11f5f9aa9c81a2cf04 /Android.bp
parent090abadc59f8608bb3ba1d7bc27b0804d053f330 (diff)
downloadlibchrome-cd603b1e3a02bf457eb9fe705bc799475abe3308.tar.gz
readdir_r is deprecated.
This is fixed upstream (https://chromium-review.googlesource.com/c/chromium/src/+/599120) but we haven't made any progress in actually getting that change into Android, so just ignore the warning for now... Bug: http://b/32678321 Test: boots, builds Change-Id: Ic1fd7ebfe63232da67d02fba0f8ae8086e91d6ca
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 0cd843607d..fceccb907f 100644
--- a/Android.bp
+++ b/Android.bp
@@ -23,6 +23,7 @@ cc_defaults {
cflags: [
"-Wall",
"-Werror",
+ "-Wno-deprecated-declarations",
],
include_dirs: [
"external/valgrind/include",
@@ -39,7 +40,6 @@ cc_defaults {
darwin: {
cflags: [
"-D_FILE_OFFSET_BITS=64",
- "-Wno-deprecated-declarations",
],
host_ldlibs: [
"-framework AppKit",