Rename licenses.py to gen_licenses.py

Matches the naming convention used in //tools/eclipse for
generating the classpath and project files.

Change-Id: I2ef1fb2cd7fac93c5f1da7153625be6d76ec926e
This commit is contained in:
Shawn Pearce
2013-05-18 14:08:02 -07:00
parent cad2310922
commit 29692ce45a
2 changed files with 4 additions and 4 deletions

View File

@@ -41,9 +41,9 @@ genasciidoc(
genrule(
name = 'licenses.txt',
cmd = '${:licenses} >$OUT',
cmd = '${:gen_licenses} >$OUT',
srcs = [],
deps = [':licenses'] + MAIN,
deps = [':gen_licenses'] + MAIN,
out = 'licenses.txt',
)
@@ -57,6 +57,6 @@ genrule(
)
python_binary(
name = 'licenses',
main = 'licenses.py',
name = 'gen_licenses',
main = 'gen_licenses.py',
)