File: control

package info (click to toggle)
android-platform-system-tools-aidl 1%3A10.0.0%2Br36-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 1,848 kB
  • sloc: cpp: 19,674; java: 972; yacc: 377; python: 160; lex: 115; xml: 19; sh: 18; makefile: 18
file content (42 lines) | stat: -rw-r--r-- 1,910 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Source: android-platform-system-tools-aidl
Section: devel
Priority: optional
Maintainer: Android Tools Maintainers <android-tools-devel@lists.alioth.debian.org>
Uploaders: Kai-Chung Yan <seamlikok@gmail.com>,
           Hans-Christoph Steiner <hans@eds.org>
Build-Depends: android-libbase-dev (>= 10.0.0+r36~),
               android-libcutils-dev (>= 10.0.0+r36~),
               bison,
               clang,
               debhelper (>=10),
               dh-exec,
               flex,
               libgtest-dev,
               pandoc
Standards-Version: 4.2.1
Rules-Requires-Root: no
Homepage: https://android.googlesource.com/platform/system/tools/aidl
Vcs-Git: https://salsa.debian.org/android-tools-team/android-platform-system-tools-aidl.git
Vcs-Browser: https://salsa.debian.org/android-tools-team/android-platform-system-tools-aidl

Package: aidl
Architecture: amd64 i386 armel armhf arm64 mips mipsel mips64el
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Binder generator of AIDL interfaces
 aidl is a utility to generate Java and/or C++ code from Android's
 Android Interface Definition Language (AIDL). AIDL is similar to
 other IDLs you might have worked with. It allows you to define the
 programming interface that both the client and service agree upon in
 order to communicate with each other using interprocess communication
 (IPC). On Android, one process cannot normally access the memory of
 another process. So to talk, they need to decompose their objects
 into primitives that the operating system can understand, and
 marshall the objects across that boundary for you. The code to do
 that marshalling is tedious to write, so Android handles it for you
 with AIDL. This package provides two tools:
 .
   * "aidl" which generates Java bindings.
   * "aidl-cpp" which generates C++ bindings.
 .
 For more info, see:
 https://developer.android.com/guide/components/aidl.html