Introduce Context opaque object of the new interface

An AclContext is introduced as part of the new interface.
This object is responsible for any constructural services that the
operators and other objects might need.

Main options that can be passed to a context object are:
- a target: for which all the subsequent object should bind with
- capabilities: which are the isa/target features to enable
- a mode: for which different strategies can be selected in the backend

Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com>
Change-Id: I315549e55d4d064cbe94dfa29d070dc281b447de
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5088
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
diff --git a/Android.bp b/Android.bp
index 6d0d6b6..c5980c3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -51,6 +51,10 @@
                          "src/core/NEON/kernels/convolution/winograd"],
     export_include_dirs: [".", "./include"],
     srcs: [
+        "src/c/AclContext.cpp",
+        "src/c/AclVersion.cpp",
+        "src/c/cl/AclOpenClExt.cpp",
+        "src/common/AllocatorWrapper.cpp",
         "src/core/AccessWindowAutoPadding.cpp",
         "src/core/AccessWindowStatic.cpp",
         "src/core/AccessWindowTranspose.cpp",
@@ -342,6 +346,8 @@
         "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
         "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
         "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
+        "src/core/NEON/kernels/scale/impl/NEON/fp16.cpp",
+        "src/core/NEON/kernels/scale/impl/NEON/integer.cpp",
         "src/core/NEON/kernels/scale/impl/NEON/qasymm8.cpp",
         "src/core/NEON/kernels/scale/impl/NEON/qasymm8_signed.cpp",
         "src/core/NEON/kernels/scale/impl/SVE/fp16.cpp",
@@ -431,6 +437,8 @@
         "src/core/utils/logging/LoggerRegistry.cpp",
         "src/core/utils/misc/MMappedFile.cpp",
         "src/core/utils/quantization/AsymmHelpers.cpp",
+        "src/cpu/CpuContext.cpp",
+        "src/gpu/cl/ClContext.cpp",
         "src/runtime/Allocator.cpp",
         "src/runtime/BlobLifetimeManager.cpp",
         "src/runtime/BlobMemoryPool.cpp",