aboutsummaryrefslogtreecommitdiff
path: root/pw_random
diff options
context:
space:
mode:
authorDavid Rogers <davidrogers@google.com>2020-08-04 10:24:57 -0700
committerCQ Bot Account <commit-bot@chromium.org>2020-08-25 19:36:51 +0000
commit9692257d24695b11a6f011a7affda4e9f5d53767 (patch)
tree061fc03064befc507cc3156523c06e61315404d7 /pw_random
parent92f0b98437494decb4478999fe8e51f2f8897b36 (diff)
downloadpigweed-9692257d24695b11a6f011a7affda4e9f5d53767.tar.gz
pw_blob_store: Add write support
Add BlobStore write implementation Add initial BlobStore tests. Add missing CMake build files in dependency modules to unbreak CMake build. Still missing: Cleanup validation checking KVS handling/usage Some better testing Change-Id: Ie6b711598a917d7553b5a682d8ef36cdcc137303 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/16040 Commit-Queue: David Rogers <davidrogers@google.com> Reviewed-by: Ewout van Bekkum <ewout@google.com>
Diffstat (limited to 'pw_random')
-rw-r--r--pw_random/CMakeLists.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/pw_random/CMakeLists.txt b/pw_random/CMakeLists.txt
new file mode 100644
index 000000000..b297f32b8
--- /dev/null
+++ b/pw_random/CMakeLists.txt
@@ -0,0 +1,20 @@
+# Copyright 2020 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.
+
+pw_auto_add_simple_module(pw_random
+ PUBLIC_DEPS
+ pw_bytes
+ pw_span
+ pw_status
+)