Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Unified Diff: components/shared_memory_seqlock/BUILD.gn

Issue 1164563003: Extract device_sensors to /device via Mojofication (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/shared_memory_seqlock.gypi ('k') | components/shared_memory_seqlock/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
]
« no previous file with comments | « components/shared_memory_seqlock.gypi ('k') | components/shared_memory_seqlock/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698