-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use cec_exports_repo for subproject export.
This replaces //tools/source_tree:export_source_tree with a dependency on the external cec_exports_repo project. Signed-off-by: format 20.02.05 <github.com/ChrisCummins/format>
- Loading branch information
1 parent
257c78d
commit 07acb0a
Showing
2 changed files
with
14 additions
and
3 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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with cldrive. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
load("//tools/bzl:exports.bzl", "exports_repo") | ||
load("@cec_exports_repo//tools/bzl:exports_repo.bzl", "exports_repo") | ||
load("@io_bazel_rules_docker//cc:image.bzl", "cc_image") | ||
|
||
licenses(["restricted"]) # GPL v3 | ||
|
@@ -28,12 +28,12 @@ exports_files([ | |
|
||
exports_repo( | ||
name = "export", | ||
github_repo = "cldrive", | ||
move_file_mapping = { | ||
path_rename = { | ||
"gpu/cldrive/README.md": "README.md", | ||
"gpu/cldrive/LICENSE": "LICENSE", | ||
"gpu/cldrive/travis.yml": ".travis.yml", | ||
}, | ||
remote = "[email protected]:ChrisCummins/cldrive.git", | ||
targets = [ | ||
"//gpu/cldrive/...", | ||
], | ||
|