simdutf.gn (473B)
1 # Copyright 2025 The Chromium Authors 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 import("//chromium/build/config/linux/pkg_config.gni") 6 import("//chromium/build/shim_headers.gni") 7 8 shim_headers("header") { 9 root_path = "." 10 headers = [ "simdutf.h" ] 11 } 12 13 pkg_config("system_simdutf") { 14 packages = [ "simdutf" ] 15 } 16 17 source_set("simdutf") { 18 public_configs = [ ":system_simdutf" ] 19 public_deps = [ ":header" ] 20 }