| Index: components/shared_memory_seqlock/BUILD.gn
|
| diff --git a/components/mime_util/BUILD.gn b/components/shared_memory_seqlock/BUILD.gn
|
| similarity index 50%
|
| copy from components/mime_util/BUILD.gn
|
| copy to components/shared_memory_seqlock/BUILD.gn
|
| index 096db1acbfaf494fcb8426c3a74e68a4ad6d575b..b6175e175cde6bb6d25efcdf678bfd88df76ba6d 100644
|
| --- a/components/mime_util/BUILD.gn
|
| +++ b/components/shared_memory_seqlock/BUILD.gn
|
| @@ -2,26 +2,29 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -static_library("mime_util") {
|
| +static_library("shared_memory_seqlock") {
|
| + output_name = "shared_memory_seqlock"
|
| sources = [
|
| - "mime_util.cc",
|
| - "mime_util.h",
|
| + "one_writer_seqlock.cc",
|
| + "one_writer_seqlock.h",
|
| + "shared_memory_seqlock_buffer.h",
|
| + "shared_memory_seqlock_reader.cc",
|
| + "shared_memory_seqlock_reader.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| - "//net",
|
| ]
|
| }
|
|
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| - "mime_util_unittest.cc",
|
| + "one_writer_seqlock_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| - ":mime_util",
|
| + ":shared_memory_seqlock",
|
| "//base",
|
| "//testing/gtest",
|
| ]
|
|
|