1// Copyright 2007 The Android Open Source Project
2//
3// Copies files into the directory structure described by a manifest
4
5package {
6    // See: http://go/android-license-faq
7    default_applicable_licenses: ["Android-Apache-2.0"],
8}
9
10cc_binary_host {
11    name: "line_endings",
12    srcs: ["line_endings.c"],
13    cflags: ["-Wall", "-Werror"],
14    stl: "none",
15}
16