Commit b3b2a4fc by Ben Clayton

Fix Android build: Add missing .cpp to Android.bp

0aef6454 added a new dependency on Reactor/EmulatedReactor.cpp which was not referenced by Android.bp. Add it to fix the build. Bug: b/145754674 Change-Id: Id9bac3c9e94edc97959b2a8c1d4abe10f7b78719 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/40976Reviewed-by: 's avatarAntonio Maiorano <amaiorano@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com>
parent 0aef6454
......@@ -182,12 +182,13 @@ cc_defaults {
],
srcs: [
"Reactor/Reactor.cpp",
"Reactor/LLVMJIT.cpp",
"Reactor/LLVMReactor.cpp",
"Reactor/Debug.cpp",
"Reactor/CPUID.cpp",
"Reactor/Debug.cpp",
"Reactor/EmulatedReactor.cpp",
"Reactor/ExecutableMemory.cpp",
"Reactor/LLVMJIT.cpp",
"Reactor/LLVMReactor.cpp",
"Reactor/Reactor.cpp",
],
cflags: [
......@@ -212,12 +213,13 @@ cc_defaults {
],
srcs: [
"Reactor/Reactor.cpp",
"Reactor/LLVMJIT.cpp",
"Reactor/LLVMReactor.cpp",
"Reactor/Debug.cpp",
"Reactor/CPUID.cpp",
"Reactor/Debug.cpp",
"Reactor/EmulatedReactor.cpp",
"Reactor/ExecutableMemory.cpp",
"Reactor/LLVMJIT.cpp",
"Reactor/LLVMReactor.cpp",
"Reactor/Reactor.cpp",
],
cflags: [
......
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