diff options
| author | 2018-12-03 15:09:48 -0800 | |
|---|---|---|
| committer | 2018-12-03 15:09:48 -0800 | |
| commit | 239debf1f3d466e9c36ef2efc5a2545bd295ff5f (patch) | |
| tree | c08e073a4265f5009306578a6a71be87b94ae1e4 | |
| parent | 21fdeb424c513e7b9839e3fe3f9095dc3c464a0b (diff) | |
| parent | 5c567684ff369b4ffd48ee4576a6930170d41a74 (diff) | |
Merge "C++17 is the default now." am: d1842c4386
am: 5c567684ff
Change-Id: Idb27ae71443472b29fdc636513bb9d0e554d4d91
| -rw-r--r-- | libs/binder/ndk/Android.bp | 2 | ||||
| -rw-r--r-- | libs/binder/ndk/test/Android.bp | 1 | ||||
| -rw-r--r-- | libs/input/Android.bp | 1 | ||||
| -rw-r--r-- | libs/nativewindow/Android.bp | 4 | ||||
| -rw-r--r-- | libs/vr/libvrflinger/Android.bp | 3 | ||||
| -rw-r--r-- | services/gpuservice/Android.bp | 1 | ||||
| -rw-r--r-- | services/surfaceflinger/Android.bp | 1 | ||||
| -rw-r--r-- | services/surfaceflinger/TimeStats/timestatsproto/Android.bp | 1 |
8 files changed, 0 insertions, 14 deletions
diff --git a/libs/binder/ndk/Android.bp b/libs/binder/ndk/Android.bp index 91a505311a..d799c5f0c6 100644 --- a/libs/binder/ndk/Android.bp +++ b/libs/binder/ndk/Android.bp @@ -39,8 +39,6 @@ cc_library { "libutils", ], - cpp_std: "c++17", - version_script: "libbinder_ndk.map.txt", } diff --git a/libs/binder/ndk/test/Android.bp b/libs/binder/ndk/test/Android.bp index 67481cf59b..b29b6e7a3e 100644 --- a/libs/binder/ndk/test/Android.bp +++ b/libs/binder/ndk/test/Android.bp @@ -22,7 +22,6 @@ cc_defaults { strip: { none: true, }, - cpp_std: "c++17", cflags: [ "-O0", "-g", diff --git a/libs/input/Android.bp b/libs/input/Android.bp index a2d6a8a798..2f399765a0 100644 --- a/libs/input/Android.bp +++ b/libs/input/Android.bp @@ -16,7 +16,6 @@ cc_library { name: "libinput", - cpp_std: "c++17", host_supported: true, cflags: [ "-Wall", diff --git a/libs/nativewindow/Android.bp b/libs/nativewindow/Android.bp index 5fbb3b2f87..d74bdb3e99 100644 --- a/libs/nativewindow/Android.bp +++ b/libs/nativewindow/Android.bp @@ -43,10 +43,6 @@ cc_library { "-Wno-unused-function", ], - cppflags: [ - "-std=c++1z" - ], - version_script: "libnativewindow.map.txt", srcs: [ diff --git a/libs/vr/libvrflinger/Android.bp b/libs/vr/libvrflinger/Android.bp index 4dc669b339..233e0fceaa 100644 --- a/libs/vr/libvrflinger/Android.bp +++ b/libs/vr/libvrflinger/Android.bp @@ -84,9 +84,6 @@ cc_library_static { "-Wno-error=sign-compare", // to fix later "-Wno-unused-variable", ], - cppflags: [ - "-std=c++1z" - ], shared_libs: sharedLibraries, whole_static_libs: staticLibraries, header_libs: headerLibraries, diff --git a/services/gpuservice/Android.bp b/services/gpuservice/Android.bp index 250bbee350..47bed65a2b 100644 --- a/services/gpuservice/Android.bp +++ b/services/gpuservice/Android.bp @@ -21,7 +21,6 @@ cc_defaults { "-Wunused", "-Wunreachable-code", ], - cppflags: ["-std=c++1z"], srcs: [ ":gpuservice_sources", ], diff --git a/services/surfaceflinger/Android.bp b/services/surfaceflinger/Android.bp index d1ea84a004..ce4daa5f35 100644 --- a/services/surfaceflinger/Android.bp +++ b/services/surfaceflinger/Android.bp @@ -8,7 +8,6 @@ cc_defaults { "-Wunused", "-Wunreachable-code", ], - cppflags: ["-std=c++1z"], } cc_defaults { diff --git a/services/surfaceflinger/TimeStats/timestatsproto/Android.bp b/services/surfaceflinger/TimeStats/timestatsproto/Android.bp index bef6b7c2eb..b937f418b2 100644 --- a/services/surfaceflinger/TimeStats/timestatsproto/Android.bp +++ b/services/surfaceflinger/TimeStats/timestatsproto/Android.bp @@ -17,7 +17,6 @@ cc_library_shared { }, cppflags: [ - "-std=c++1z", "-Werror", "-Wno-c++98-compat-pedantic", "-Wno-disabled-macro-expansion", |