blob: e57045fc5b45dc62580125934a4b84ff32d71eeb [file] [log] [blame]
Colin Cross09975c32017-08-29 15:01:05 -07001build = [
Colin Crossaf0b54c2017-09-27 17:22:32 -07002 "JavaLibrary.bp",
Colin Cross09975c32017-08-29 15:01:05 -07003 "NativeCode.bp",
4]
Nan Zhang65f27a32018-01-05 10:41:46 -08005
Nan Zhangd55722b2018-02-27 15:08:20 -08006genrule {
7 name: "notices-for-framework-stubs",
8 tool_files: [
9 "NOTICE",
10 "ojluni/NOTICE",
11 ],
12 cmd: "cp -f $(location NOTICE) $(genDir)/NOTICES/libcore-NOTICE && cp -f $(location ojluni/NOTICE) $(genDir)/NOTICES/ojluni-NOTICE",
13 out: [
14 "NOTICES/libcore-NOTICE",
15 "NOTICES/ojluni-NOTICE",
16 ],
17}