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    // A large-scale-change added 'default_applicable_licenses' to import
8    // all of the 'license_kinds' from "development_license"
9    // to get the below license kinds:
10    //   legacy_restricted
11    default_applicable_licenses: ["development_license"],
12}
13
14cc_binary_host {
15    name: "line_endings",
16    srcs: ["line_endings.c"],
17    cflags: ["-Wall", "-Werror"],
18}
19