Files
android_development/tools/line_endings/Android.bp
Dan Willemsen 17df46e334 Add Android.bp-based definitions for host sdk-repos
So that these can be built independently from the large sdk zip. The old
Make-based implementation created this as part of the large sdk zip,
then extracted it from that zip file.

This topic only adds the new definitions under a different filename,
full replacement will come in a follow-on CL.

Once we fully transitions to this mechanism, we'll be able to turn down
most modules on Macs, only building these and their dependencies.

Bug: 187222815
Change-Id: If6be8dd573a323ef8b343bc86116ffa3d43922a5
2021-10-12 20:45:15 -07:00

20 lines
563 B
Plaintext

// Copyright 2007 The Android Open Source Project
//
// Copies files into the directory structure described by a manifest
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "development_license"
// to get the below license kinds:
// legacy_restricted
default_applicable_licenses: ["development_license"],
}
cc_binary_host {
name: "line_endings",
srcs: ["line_endings.c"],
cflags: ["-Wall", "-Werror"],
stl: "none",
}