You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
build = [ |
|
"JavaLibrary.bp", |
|
"NativeCode.bp", |
|
] |
|
|
|
genrule { |
|
name: "notices-for-framework-stubs", |
|
tool_files: [ |
|
"NOTICE", |
|
"ojluni/NOTICE", |
|
], |
|
cmd: "cp -f $(location NOTICE) $(genDir)/NOTICES/libcore-NOTICE && cp -f $(location ojluni/NOTICE) $(genDir)/NOTICES/ojluni-NOTICE", |
|
out: [ |
|
"NOTICES/libcore-NOTICE", |
|
"NOTICES/ojluni-NOTICE", |
|
], |
|
}
|
|
|