Commit cd70aa42 by Yuly Novikov Committed by Commit Bot

Always depend on libandroid for angle_util.

libnativewindow doesn't have all the functions angle_util requires, namely: AConfiguration_*, AInputEvent_*, AInputQueue_*, ALooper_*. It should be safe to always use libandroid, since angle_util is only used by tests, thus it won't interfere with AngleLibraries.apk Bug: angleproject:2418 Change-Id: I8343924629205bfb5d65dafe34db8e2baa987bae Reviewed-on: https://chromium-review.googlesource.com/1108747Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent d11efaec
...@@ -865,12 +865,10 @@ foreach(is_shared_library, ...@@ -865,12 +865,10 @@ foreach(is_shared_library,
set_sources_assignment_filter([]) set_sources_assignment_filter([])
sources += rebase_path(util_gypi.util_linux_sources, ".", "util") sources += rebase_path(util_gypi.util_linux_sources, ".", "util")
sources += rebase_path(util_gypi.util_android_sources, ".", "util") sources += rebase_path(util_gypi.util_android_sources, ".", "util")
if (ndk_supports_nativewindow) { libs += [
libs += [ "nativewindow" ] "android",
} else { "log",
libs += [ "android" ] ]
}
libs += [ "log" ]
} }
if (use_ozone) { if (use_ozone) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment