aboutsummaryrefslogtreecommitdiff
path: root/generator/Android.bp
blob: cd7516ccdeedd63ff1527c6df5a6cb52110ea337 (plain)
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
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_nanopb-c_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-BSD
    //   SPDX-license-identifier-MIT
    default_applicable_licenses: ["external_nanopb-c_license"],
}

python_binary_host {
   name: "protoc-gen-nanopb",
   main: "nanopb_generator.py",
   srcs: [
       "nanopb_generator.py",
       "proto/nanopb.proto",
       "proto/plugin.proto",
   ],
   proto: {
       canonical_path_from_root: false,
       include_dirs: ["external/protobuf/src"],
   },
   libs: ["libprotobuf-python"],
   version: {
       py2: {
           enabled: true,
           embedded_launcher: true,
       },
       py3: {
           enabled: false,
       },
   },
}