xref: /aosp_15_r20/external/pytorch/torchgen/Android.bp (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1*da0073e9SAndroid Build Coastguard Workerpython_library_host {
2*da0073e9SAndroid Build Coastguard Worker    name: "torchgen_library",
3*da0073e9SAndroid Build Coastguard Worker    srcs: [
4*da0073e9SAndroid Build Coastguard Worker        "**/*.py",
5*da0073e9SAndroid Build Coastguard Worker    ],
6*da0073e9SAndroid Build Coastguard Worker    pkg_path: "torchgen",
7*da0073e9SAndroid Build Coastguard Worker    libs: [
8*da0073e9SAndroid Build Coastguard Worker        "pyyaml",
9*da0073e9SAndroid Build Coastguard Worker        "typing_extensions",
10*da0073e9SAndroid Build Coastguard Worker    ],
11*da0073e9SAndroid Build Coastguard Worker}
12*da0073e9SAndroid Build Coastguard Worker
13*da0073e9SAndroid Build Coastguard Workerpython_binary_host {
14*da0073e9SAndroid Build Coastguard Worker    name: "torchgen_executorch",
15*da0073e9SAndroid Build Coastguard Worker    main: "gen_executorch.py",
16*da0073e9SAndroid Build Coastguard Worker    srcs: ["gen_executorch.py"],
17*da0073e9SAndroid Build Coastguard Worker    libs: ["torchgen_library"],
18*da0073e9SAndroid Build Coastguard Worker}
19