summaryrefslogtreecommitdiff
path: root/services/startop
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2018-11-26 10:33:17 -0800
committerIgor Murashkin <iam@google.com>2019-01-07 13:46:47 -0800
commit4de1e16570bba8b78d3619ff4d37b79d504a1679 (patch)
tree8103ee150473c2c39a9308410d7a7e4f6c13c1b2 /services/startop
parentffdf092a77c6f6c8998394405d43f22ae54dfede (diff)
services: Add iorap forwarding service
Add a new service to system_server. It purely forwards data from internal APIs to iorapd over binder, it is not a binder service itself. Currently forwards ActivityMetricsLaunchObserver APIs from ActivityTaskManagerInternal. Bug: 72170747 Change-Id: Ic4fa283df1c16660099030c74a0039ef24866819
Diffstat (limited to 'services/startop')
-rw-r--r--services/startop/Android.bp24
1 files changed, 24 insertions, 0 deletions
diff --git a/services/startop/Android.bp b/services/startop/Android.bp
new file mode 100644
index 000000000000..093b4ec66ddf
--- /dev/null
+++ b/services/startop/Android.bp
@@ -0,0 +1,24 @@
+/*
+ * 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.
+ */
+
+java_library_static {
+ name: "services.startop",
+
+ static_libs: [
+ // frameworks/base/startop/iorap
+ "services.startop.iorap",
+ ],
+}