export_include_dirs: ["include"], bazel_module: { bp2build_available: true }, } 1. 2. 3. 4. 5. 6. 在上述代码中,我们设置了 export_include_dirs 属性为包含头文件的目录。你需要将其替换为你自己的头文件目录。 4. 添加必要的头文件到 cc_library_headers 模块 在这一步中,我们需要将需要导...
export_include_dirs: ["include"], local_include_dirs: ["my_headers"], } // Android.bp文件结束 1. 2. 3. 4. 5. 6. 7. 这段代码的作用是定义了一个名为my_headers的cc_library_headers模块,并指定了需要导出的头文件目录为include,本地头文件目录为my_headers。 步骤二:创建cc_library_headers模...