blob: 211e7289ae8825f0c1a450a63287099f4eb5b765 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
import("//build/zircon/migrated_targets.gni")
source_set("string") {
sources = [
"memchr.c",
"memcmp.c",
"memmove.c",
"strcat.c",
"strchr.c",
"strcmp.c",
"strcoll.c",
"strcpy.c",
"strlcat.c",
"strlcpy.c",
"strlen.c",
"strncat.c",
"strncmp.c",
"strncpy.c",
"strnicmp.c",
"strnlen.c",
"strpbrk.c",
"strrchr.c",
"strspn.c",
"strstr.c",
"strtok.c",
"strxfrm.c",
]
deps = [
"arch/$zircon_cpu",
"//zircon/kernel/lib/libc:ctype",
"//zircon/kernel/lib/libc:headers",
]
}