aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYiwei Zhang <zzyiwei@google.com>2018-04-05 13:38:00 -0700
committerYiwei Zhang <zzyiwei@google.com>2018-04-05 13:38:00 -0700
commit42393395be4cf94d0a0030fb22f9ec38fabf842e (patch)
treef49932ec579078cedba24b9f1c26003c6d9a4469
parent990c4d510781b97981036e26f6d7b8d10c152e29 (diff)
downloadvulkan-validation-layers-pie-qpr1-s2-release.tar.gz
LVL upstream move cjson into part of LVL loader. Thus need to decouple vkjson from cjson in advance. Test: adb shell cmd gpu vkjson Bug: b/77613206 Change-Id: I87e01723953b124a3558dad2faba0e15898eddde
-rw-r--r--Android.bp3
-rw-r--r--libs/cjson/Android.bp36
2 files changed, 0 insertions, 39 deletions
diff --git a/Android.bp b/Android.bp
deleted file mode 100644
index c1f0207b7..000000000
--- a/Android.bp
+++ /dev/null
@@ -1,3 +0,0 @@
-subdirs = [
- "libs/cjson",
-]
diff --git a/libs/cjson/Android.bp b/libs/cjson/Android.bp
deleted file mode 100644
index 6a1600cd8..000000000
--- a/libs/cjson/Android.bp
+++ /dev/null
@@ -1,36 +0,0 @@
-cc_library_static {
- name: "cjson",
- clang: true,
- srcs: [
- "cJSON.c",
- ],
- cflags: [
- "-Wall",
- "-Werror",
- ],
- local_include_dirs: [
- "includes",
- ],
- export_include_dirs: [
- "includes",
- ],
-}
-
-cc_library_static {
- name: "cjson_ndk",
- clang: true,
- srcs: [
- "cJSON.c",
- ],
- cflags: [
- "-Wall",
- "-Werror",
- ],
- local_include_dirs: [
- "includes",
- ],
- export_include_dirs: [
- "includes",
- ],
- sdk_version: "24",
-}