0b3c24bd4f
From O, libutils.so is loaded twice. Once in the default namespace and once in the sphal namespace for vendor libs. However, since the framework only communicates with the instance loaded in the default namespace, report_sysprop_change() event is not notified to the instance in sphal namespace. This causes ATRACE to not work for vendor libs loaded in sphal namespace. So, the instance loaded in default namespace now explicitly redirects the event to the other instance. Bug: 62084107 Test: start an app, run 'adb shell atrace gfx --stream'. atrace from the graphics driver are visible. Change-Id: Ia6c2ca6bcb9a8849ebb09b5c38d60480c92d4571
15 lines
332 B
Text
15 lines
332 B
Text
subdirs = ["tests"]
|
|
|
|
cc_library {
|
|
name: "libvndksupport",
|
|
srcs: ["linker.c"],
|
|
local_include_dirs: ["include/vndksupport"],
|
|
export_include_dirs: ["include"],
|
|
shared_libs: ["liblog"],
|
|
}
|
|
|
|
llndk_library {
|
|
name: "libvndksupport",
|
|
symbol_file: "libvndksupport.map.txt",
|
|
export_include_dirs: ["include"],
|
|
}
|