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

Unified Diff: third_party/smhasher/BUILD.gn

Issue 2152033002: Convert third_party source sets to static libraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ios Created 4 years, 5 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 | « third_party/qcms/BUILD.gn ('k') | third_party/wayland/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/smhasher/BUILD.gn
diff --git a/third_party/smhasher/BUILD.gn b/third_party/smhasher/BUILD.gn
index fd9088c2712e398ffec53325ffa37cce6f0ab487..899b3af7dd4bf96a03d430213a9760c6cd8b481c 100644
--- a/third_party/smhasher/BUILD.gn
+++ b/third_party/smhasher/BUILD.gn
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("murmurhash3") {
+static_library("murmurhash3") {
sources = [
"src/MurmurHash3.cpp",
"src/MurmurHash3.h",
@@ -11,7 +11,7 @@ source_set("murmurhash3") {
configs += [ "//build/config/compiler:no_chromium_code" ]
}
-source_set("pmurhash") {
+static_library("pmurhash") {
sources = [
"src/PMurHash.c",
"src/PMurHash.h",
@@ -20,7 +20,7 @@ source_set("pmurhash") {
configs += [ "//build/config/compiler:no_chromium_code" ]
}
-source_set("cityhash") {
+static_library("cityhash") {
sources = [
"src/City.cpp",
"src/City.h",
« no previous file with comments | « third_party/qcms/BUILD.gn ('k') | third_party/wayland/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698