Skip to content

Commit

Permalink
Added aws-lc as an import (#97)
Browse files Browse the repository at this point in the history
* Added aws-lc as an import

* Renamed aws-lc -> awslc.py so it gets loaded
  • Loading branch information
Justin Boswell authored Feb 23, 2021
1 parent e3eec2c commit 35974d8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions builder/imports/awslc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0.

from builder.core.project import Project, Import


config = {
'targets': ['linux', 'android'],
'test_steps': [],
'build_tests': False,
}


class AWSLCImport(Import):
def __init__(self, **kwargs):
super().__init__(
library=True,
config=config,
**kwargs)


class AWSLCProject(Project):
def __init__(self, **kwargs):
super().__init__(
account='awslabs',
config=config,
**kwargs)

0 comments on commit 35974d8

Please sign in to comment.