This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the java and python setup more consistent (#71)
* Move/rename files to make java files prefixed with java to allow naming consistency with python files. * Update pathnames within files to match the file moves. * Run buildifier on WORKSPACE, BUILD, and *.bzl files. * Disable the SDK update check to match the use of --skip_sdk_update_check for python. * Extract inline files from the .bzl files and add a python example to test the python rules. * Extract find_local_or_download into another bzl file and have {java,py}_appengine.bzl use it. * Add hooks in appengine.bzl for backward compatibility * Update documentation for the restructured bzl files. * Group loads together at the beginning of the file.
- Loading branch information
Showing
34 changed files
with
719 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,6 @@ Alex Humesky <[email protected]> | |
Damien Martin-Guillerez <[email protected]> | ||
David Chen <[email protected]> | ||
Erik Kuefler <[email protected]> | ||
James O'Kane <[email protected]> | ||
Kristina Chodorow <[email protected]> | ||
Lukacs Berki <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
workspace(name = "io_bazel_rules_appengine") | ||
|
||
load("//appengine:appengine.bzl", "appengine_repositories") | ||
appengine_repositories() | ||
load("//appengine:java_appengine.bzl", "java_appengine_repositories") | ||
load("//appengine:py_appengine.bzl", "py_appengine_repositories") | ||
|
||
java_appengine_repositories() | ||
|
||
py_appengine_repositories() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.