BUILD.gn 606 B

123456789101112131415161718192021
  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
  3. # found in the LICENSE file.
  4. static_library("murmurhash2") {
  5. sources = [
  6. "src/MurmurHash2.cpp",
  7. "src/MurmurHash2.h",
  8. ]
  9. configs -= [ "//build/config/compiler:chromium_code" ]
  10. configs += [ "//build/config/compiler:no_chromium_code" ]
  11. }
  12. static_library("murmurhash3") {
  13. sources = [
  14. "src/MurmurHash3.cpp",
  15. "src/MurmurHash3.h",
  16. ]
  17. configs -= [ "//build/config/compiler:chromium_code" ]
  18. configs += [ "//build/config/compiler:no_chromium_code" ]
  19. }