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

Side by Side Diff: third_party/smhasher/BUILD.gn

Issue 2138973002: Initial CL for talking to the WebAPK server to generate WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into webapk_builder_impl22_no_content Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("murmurhash2") {
6 sources = [
7 "src/MurmurHash2.cpp",
8 "src/MurmurHash2.h",
9 ]
10 configs -= [ "//build/config/compiler:chromium_code" ]
11 configs += [ "//build/config/compiler:no_chromium_code" ]
12 }
13
5 static_library("murmurhash3") { 14 static_library("murmurhash3") {
6 sources = [ 15 sources = [
7 "src/MurmurHash3.cpp", 16 "src/MurmurHash3.cpp",
8 "src/MurmurHash3.h", 17 "src/MurmurHash3.h",
9 ] 18 ]
10 configs -= [ "//build/config/compiler:chromium_code" ] 19 configs -= [ "//build/config/compiler:chromium_code" ]
11 configs += [ "//build/config/compiler:no_chromium_code" ] 20 configs += [ "//build/config/compiler:no_chromium_code" ]
12 } 21 }
13 22
14 static_library("pmurhash") { 23 static_library("pmurhash") {
15 sources = [ 24 sources = [
16 "src/PMurHash.c", 25 "src/PMurHash.c",
17 "src/PMurHash.h", 26 "src/PMurHash.h",
18 ] 27 ]
19 configs -= [ "//build/config/compiler:chromium_code" ] 28 configs -= [ "//build/config/compiler:chromium_code" ]
20 configs += [ "//build/config/compiler:no_chromium_code" ] 29 configs += [ "//build/config/compiler:no_chromium_code" ]
21 } 30 }
22 31
23 static_library("cityhash") { 32 static_library("cityhash") {
24 sources = [ 33 sources = [
25 "src/City.cpp", 34 "src/City.cpp",
26 "src/City.h", 35 "src/City.h",
27 ] 36 ]
28 configs -= [ "//build/config/compiler:chromium_code" ] 37 configs -= [ "//build/config/compiler:chromium_code" ]
29 configs += [ "//build/config/compiler:no_chromium_code" ] 38 configs += [ "//build/config/compiler:no_chromium_code" ]
30 } 39 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698