summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes2018-01-09 16:55:36 -0600
committerElliott Hughes2018-01-09 16:55:36 -0600
commit4e4ab4ae72e7e0a19471cc955791f47b8f70e5f5 (patch)
tree051169c33f64aca7b700daea6dfab47bf11cf247
parenta1e27d342e05fc504ce7140463d17336c53a1af8 (diff)
downloadplatform-system-core-4e4ab4ae72e7e0a19471cc955791f47b8f70e5f5.tar.gz
platform-system-core-4e4ab4ae72e7e0a19471cc955791f47b8f70e5f5.tar.xz
platform-system-core-4e4ab4ae72e7e0a19471cc955791f47b8f70e5f5.zip
Just check in tools.h.
Bug: N/A Test: builds Change-Id: Ia08465799854a85da59c9fb9f5448aab11f81887
-rw-r--r--toolbox/Android.bp7
-rw-r--r--toolbox/tools.h4
2 files changed, 4 insertions, 7 deletions
diff --git a/toolbox/Android.bp b/toolbox/Android.bp
index b5d16b80f..3fd7fdefa 100644
--- a/toolbox/Android.bp
+++ b/toolbox/Android.bp
@@ -33,12 +33,6 @@ cc_library_static {
33} 33}
34 34
35genrule { 35genrule {
36 name: "toolbox_tools",
37 cmd: "echo '/* file generated automatically */' >$(out) && for t in toolbox dd getevent newfs_msdos; do echo \"TOOL($$t)\" >>$(out); done",
38 out: ["tools.h"],
39}
40
41genrule {
42 name: "toolbox_input_labels", 36 name: "toolbox_input_labels",
43 tool_files: ["generate-input.h-labels.py"], 37 tool_files: ["generate-input.h-labels.py"],
44 cmd: "$(location) $(in) >$(out)", 38 cmd: "$(location) $(in) >$(out)",
@@ -55,7 +49,6 @@ cc_binary {
55 "newfs_msdos.c", 49 "newfs_msdos.c",
56 ], 50 ],
57 generated_headers: [ 51 generated_headers: [
58 "toolbox_tools",
59 "toolbox_input_labels", 52 "toolbox_input_labels",
60 ], 53 ],
61 whole_static_libs: ["libtoolbox_dd"], 54 whole_static_libs: ["libtoolbox_dd"],
diff --git a/toolbox/tools.h b/toolbox/tools.h
new file mode 100644
index 000000000..9134af367
--- /dev/null
+++ b/toolbox/tools.h
@@ -0,0 +1,4 @@
1TOOL(dd)
2TOOL(getevent)
3TOOL(newfs_msdos)
4TOOL(toolbox)