mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
361 B
Awk
17 lines
361 B
Awk
#
|
|
# This requires -vpackage_name=name.of.the.package -vvalue=[true|false]
|
|
#
|
|
|
|
BEGIN{
|
|
print
|
|
print "/* generated by gen_dbg.awk to set DEBUG on or off */"
|
|
print
|
|
print "package "package_name";"
|
|
print
|
|
print "public interface AS"
|
|
print "{"
|
|
print " public static final boolean S = "value";"
|
|
print " public static final boolean DEBUG = "value";"
|
|
print "}"
|
|
}
|