aboutsummaryrefslogtreecommitdiff
path: root/pw_system/backend.gni
diff options
context:
space:
mode:
authorArmando Montanez <amontanez@google.com>2021-12-15 14:55:36 -0800
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-01-05 18:26:44 +0000
commit2c042f9c0098c30d132f0edf046dfa560bd18186 (patch)
tree1a87afcc34cafa54941d67b95a3cfe63058cdcd4 /pw_system/backend.gni
parent55333fa304ae7b8784ef9780d25f713d5068b617 (diff)
downloadpigweed-2c042f9c0098c30d132f0edf046dfa560bd18186.tar.gz
pw_system: Add target_hooks porting layer
Instead of hard-coding against FreeRTOS, uses a porting layer defined in pw_system/target_hooks.h to enable other schedulers. Change-Id: Idc7446f27ae1d0d89f9cb02a12f7e76d4b8dfcbd Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/74860 Reviewed-by: Carlos Chinchilla <cachinchilla@google.com> Reviewed-by: Keir Mierle <keir@google.com> Commit-Queue: Armando Montanez <amontanez@google.com>
Diffstat (limited to 'pw_system/backend.gni')
-rw-r--r--pw_system/backend.gni21
1 files changed, 21 insertions, 0 deletions
diff --git a/pw_system/backend.gni b/pw_system/backend.gni
new file mode 100644
index 000000000..ec8a7fcab
--- /dev/null
+++ b/pw_system/backend.gni
@@ -0,0 +1,21 @@
+# Copyright 2021 The Pigweed Authors
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may not
+# use this file except in compliance with the License. You may obtain a copy of
+# the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations under
+# the License.
+
+import("//build_overrides/pigweed.gni")
+
+declare_args() {
+ # The pw_system backend that provides thread options for the appropriate
+ # scheduler.
+ pw_system_BACKEND = ""
+}