bundle.json 3.4 KB
Newer Older
H
huadongqin 已提交
1 2 3 4 5 6 7 8 9 10 11
{
    "name": "@openharmony/ipc",
    "version": "3.1.0",
    "description": "ipc",
    "publishAs": "code-segment",
    "scripts": {
      "install": "DEST_PATH=${DEP_BUNDLE_BASE}/foundation/communication/ipc && mkdir -p $DEST_PATH && cp -r ./* $DEST_PATH"
    },
    "author": {},
    "repository": "",
    "license": "Apache License 2.0",
Y
yudechen 已提交
12 13 14
    "segment": {
      "destPath": "foundation/communication/ipc"
    },
H
huadongqin 已提交
15 16 17
    "component": {
      "name": "ipc",
      "subsystem": "communication",
18
      "adapted_system_type": [
L
libaoping 已提交
19 20 21
        "standard",
        "small",
        "mini"
H
huadongqin 已提交
22 23
      ],
      "features": [],
24 25 26
      "syscap":[
        "SystemCapability.Communication.IPC.Core"
      ],
H
huadongqin 已提交
27 28 29 30
      "rom": "500KB",
      "ram": "100KB",
      "deps": {
        "components": [
C
chen 已提交
31
          "samgr",
马根堂 已提交
32 33
          "hitrace_native",
          "hiviewdfx_hilog_native",
34
          "c_utils",
马根堂 已提交
35 36
          "access_token",
          "dsoftbus"
H
huadongqin 已提交
37 38 39 40 41 42 43
        ],
        "third_party": [
          "bounds_checking_function"
        ]
      },
      "build": {
        "sub_component": [
L
libaoping 已提交
44
          "//foundation/communication/ipc:ipc_components"
H
huadongqin 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
        ],
        "inner_kits": [
          {
              "name": "//foundation/communication/ipc/interfaces/innerkits/ipc_core:ipc_core",
              "header": {
                "header_files": [
                  "ipc_types.h",
                  "ipc_skeleton.h",
                  "iremote_object.h",
                  "iremote_proxy.h",
                  "iremote_stub.h",
                  "message_parcel.h",
                  "message_option.h",
                  "iremote_broker.h",
                  "ipc_object_proxy.h",
                  "ipc_object_stub.h",
                  "peer_holder.h",
                  "ipc_file_descriptor.h",
                  "jni_help.h"
                ],
                "header_base": "//foundation/communication/ipc/interfaces/innerkits/ipc_core/include"
              }
            },
            {
              "name": "//foundation/communication/ipc/interfaces/innerkits/ipc_single:ipc_single",
              "header": {
                "header_files": [
                  "ipc_types.h",
                  "ipc_skeleton.h",
                  "iremote_object.h",
                  "iremote_proxy.h",
                  "iremote_stub.h",
                  "message_parcel.h",
                  "message_option.h",
                  "iremote_broker.h",
                  "ipc_object_proxy.h",
                  "ipc_object_stub.h",
                  "peer_holder.h",
                  "ipc_file_descriptor.h",
                  "jni_help.h"
                ],
                "header_base": "//foundation/communication/ipc/interfaces/innerkits/ipc_core/include"
              }
            },
            {
              "name": "//foundation/communication/ipc/interfaces/innerkits/libdbinder:libdbinder",
              "header": {
                "header_files": [
                  "dbinder_service.h",
                  "dbinder_service_stub.h"
                ],
                "header_base": "//foundation/communication/ipc/interfaces/innerkits/libdbinder/include"
              }
            }
        ],
        "test": [
          "//foundation/communication/ipc/ipc/test:moduletest",
          "//foundation/communication/ipc/ipc/native/test:unittest"
        ]
      }
    }
  }