OSDN Git Service

Introduce a no-perfprofd module.
authorRoland Levillain <rpl@google.com>
Fri, 7 Dec 2018 19:33:19 +0000 (19:33 +0000)
committerRoland Levillain <rpl@google.com>
Fri, 7 Dec 2018 19:37:42 +0000 (19:37 +0000)
This module creates a dummy binary that can be used to replace
perfprofd on some build products. Its intended (temporary) use is to
regain some space on the system partition of storage-constrained
products such as marlin-eng and sailfish-eng.

Test: lunch marlin-eng && make systemimage
Bug: 113373927
Change-Id: I16ec9029786ce2d136c353fe00a48bdfdd9ad7a0

perfprofd/Android.bp
perfprofd/no-perfprofd.cc [new file with mode: 0644]

index e03508f..c6a0423 100644 (file)
@@ -264,3 +264,14 @@ subdirs = [
     "binder_interface",
     "tests",
 ]
+
+// Dummy module overriding perfprofd to prevent its installation on some build products.
+cc_binary {
+    name: "no-perfprofd",
+    srcs: [
+        "no-perfprofd.cc",
+    ],
+    overrides: [
+        "perfprofd",
+    ],
+}
diff --git a/perfprofd/no-perfprofd.cc b/perfprofd/no-perfprofd.cc
new file mode 100644 (file)
index 0000000..813d1a7
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// "Almost empty" source file to generate the dummy executable no-perfprofd, replacing
+// perfprofd on some devices.
+
+int main(int /* argc */, char** /* argv */) {
+  // Nothing to do.
+}