Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 1 | // Copyright (C) 2016 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // ========= |
| 16 | // incidentd |
| 17 | // ========= |
| 18 | |
| 19 | cc_binary { |
| 20 | name: "incidentd", |
| 21 | |
| 22 | srcs: [ |
| 23 | "src/**/*.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 24 | "src/**/*.proto", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 25 | ":incidentd_section_list", |
| 26 | ], |
| 27 | |
| 28 | cflags: [ |
| 29 | "-Wall", |
| 30 | "-Werror", |
| 31 | "-Wno-missing-field-initializers", |
| 32 | "-Wno-unused-variable", |
| 33 | "-Wunused-parameter", |
| 34 | |
| 35 | // Allow implicit fallthrough in IncidentService.cpp:85 until it is fixed. |
| 36 | "-Wno-error=implicit-fallthrough", |
| 37 | |
| 38 | // optimize for size (protobuf glop can get big) |
| 39 | "-Os", |
| 40 | //"-g", |
| 41 | //"-O0", |
| 42 | ], |
| 43 | |
| 44 | local_include_dirs: ["src"], |
| 45 | generated_headers: ["gen-platform-proto-constants"], |
| 46 | |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 47 | proto: { |
| 48 | type: "lite", |
| 49 | }, |
| 50 | |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 51 | shared_libs: [ |
| 52 | "libbase", |
| 53 | "libbinder", |
| 54 | "libdebuggerd_client", |
| 55 | "libdumputils", |
| 56 | "libincident", |
| 57 | "liblog", |
| 58 | "libprotoutil", |
| 59 | "libservices", |
| 60 | "libutils", |
Mike Ma | 2838169 | 2018-12-04 15:46:29 -0800 | [diff] [blame] | 61 | "libprotobuf-cpp-lite", |
Yao Chen | 43706b4 | 2019-04-21 14:34:30 -0700 | [diff] [blame] | 62 | "libcrypto", |
| 63 | "libkeystore_aidl", |
| 64 | "libkeystore_binder", |
| 65 | "libkeystore_parcelables", |
| 66 | "android.hardware.keymaster@4.0", |
| 67 | "libkeymaster4support", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 68 | ], |
| 69 | |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 70 | static_libs: [ |
| 71 | "libincidentcompanion", |
| 72 | "libplatformprotos", |
| 73 | ], |
| 74 | |
Joe Onorato | fe7bbf4 | 2019-03-24 20:57:16 -0700 | [diff] [blame] | 75 | product_variables: { |
| 76 | debuggable: { |
| 77 | cflags: ["-DALLOW_RESTRICTED_SECTIONS=1"], |
| 78 | }, |
| 79 | }, |
| 80 | |
| 81 | |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 82 | init_rc: ["incidentd.rc"], |
| 83 | } |
| 84 | |
| 85 | // ============== |
| 86 | // incidentd_test |
| 87 | // ============== |
| 88 | |
| 89 | cc_test { |
| 90 | name: "incidentd_test", |
| 91 | test_suites: ["device-tests"], |
| 92 | |
| 93 | cflags: [ |
| 94 | "-Werror", |
| 95 | "-Wall", |
| 96 | "-Wno-unused-variable", |
| 97 | "-Wunused-parameter", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 98 | "-g", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 99 | |
| 100 | // Allow implicit fallthrough in IncidentService.cpp:85 until it is fixed. |
| 101 | "-Wno-error=implicit-fallthrough", |
| 102 | ], |
| 103 | |
| 104 | local_include_dirs: ["src"], |
| 105 | generated_headers: ["gen-platform-proto-constants"], |
| 106 | |
| 107 | srcs: [ |
| 108 | "tests/**/*.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 109 | "tests/**/*.proto", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 110 | "src/FdBuffer.cpp", |
| 111 | "src/Privacy.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 112 | "src/PrivacyFilter.cpp", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 113 | "src/Reporter.cpp", |
| 114 | "src/Section.cpp", |
| 115 | "src/Throttler.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 116 | "src/WorkDirectory.cpp", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 117 | "src/incidentd_util.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 118 | "src/proto_util.cpp", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 119 | "src/report_directory.cpp", |
Yao Chen | 43706b4 | 2019-04-21 14:34:30 -0700 | [diff] [blame] | 120 | "src/cipher/IncidentKeyStore.cpp", |
| 121 | "src/cipher/ProtoEncryption.cpp", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 122 | "src/**/*.proto", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 123 | ], |
| 124 | |
| 125 | data: ["testdata/**/*"], |
| 126 | |
Yao Chen | ec21648 | 2019-02-06 16:45:40 -0800 | [diff] [blame] | 127 | static_libs: [ |
| 128 | "libgmock", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 129 | "libincidentcompanion", |
| 130 | "libplatformprotos-test", |
Yao Chen | ec21648 | 2019-02-06 16:45:40 -0800 | [diff] [blame] | 131 | ], |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 132 | shared_libs: [ |
| 133 | "libbase", |
| 134 | "libbinder", |
| 135 | "libdebuggerd_client", |
| 136 | "libdumputils", |
| 137 | "libincident", |
| 138 | "liblog", |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 139 | "libprotobuf-cpp-full", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 140 | "libprotoutil", |
| 141 | "libservices", |
| 142 | "libutils", |
Yao Chen | 43706b4 | 2019-04-21 14:34:30 -0700 | [diff] [blame] | 143 | "libcrypto", |
| 144 | "libkeystore_aidl", |
| 145 | "libkeystore_binder", |
| 146 | "libkeystore_parcelables", |
| 147 | "android.hardware.keymaster@4.0", |
| 148 | "libkeymaster4support", |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 149 | ], |
Joe Onorato | 99598ee | 2019-02-11 15:55:13 +0000 | [diff] [blame] | 150 | |
| 151 | target: { |
| 152 | android: { |
| 153 | proto: { |
| 154 | type: "full", |
| 155 | }, |
| 156 | }, |
| 157 | }, |
Colin Cross | bc2dc31 | 2018-10-26 22:34:06 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | genrule { |
| 161 | name: "incidentd_section_list", |
| 162 | tools: ["incident-section-gen"], |
| 163 | out: ["section_list.cpp"], |
| 164 | cmd: "$(location incident-section-gen) incidentd > $(out)", |
| 165 | } |