-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also update/add all required dependencies Change-Id: I2239fcb1226cb1d2a9213b55a8003e9271c4dedd Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/115890 Reviewed-by: Anthony Stange <[email protected]> Reviewed-by: Wyatt Hepler <[email protected]> Commit-Queue: Victor Berchet <[email protected]>
- Loading branch information
Victor Berchet
authored and
CQ Bot Account
committed
Oct 28, 2022
1 parent
567b398
commit 8aac1c7
Showing
24 changed files
with
618 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_headers { | ||
name: "pw_assert_headers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: ["public"], | ||
host_supported: true, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_headers { | ||
name: "pw_assert_log_headers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: [ | ||
"assert_backend_public_overrides", | ||
"check_backend_public_overrides", | ||
"public", | ||
], | ||
host_supported: true, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_static { | ||
name: "pw_containers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: ["public"], | ||
header_libs: [ | ||
"pw_assert_headers", | ||
"pw_assert_log_headers", | ||
"pw_log_headers", | ||
"pw_log_null_headers", | ||
"pw_preprocessor_headers", | ||
], | ||
host_supported: true, | ||
srcs: [ | ||
"intrusive_list.cc", | ||
], | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_headers { | ||
name: "pw_function_headers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: [ | ||
"public", | ||
], | ||
host_supported: true, | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_headers { | ||
name: "pw_log_null_headers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: [ | ||
"public", | ||
"public_overrides", | ||
], | ||
host_supported: true, | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_static { | ||
name: "pw_protobuf", | ||
vendor_available: true, | ||
export_include_dirs: ["public"], | ||
header_libs: [ | ||
"fuschia_sdk_lib_fit", | ||
"fuschia_sdk_lib_stdcompat", | ||
"pw_assert_headers", | ||
"pw_assert_log_headers", | ||
"pw_function_headers", | ||
"pw_log_headers", | ||
"pw_log_null_headers", | ||
"pw_polyfill_headers", | ||
"pw_preprocessor_headers", | ||
"pw_result_headers", | ||
"pw_span_headers", | ||
], | ||
host_supported: true, | ||
srcs: [ | ||
"decoder.cc", | ||
"encoder.cc", | ||
"find.cc", | ||
"map_utils.cc", | ||
"message.cc", | ||
"stream_decoder.cc", | ||
], | ||
static_libs: [ | ||
"pw_bytes", | ||
"pw_containers", | ||
"pw_status", | ||
"pw_stream", | ||
"pw_string", | ||
"pw_varint", | ||
], | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2022 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
package { | ||
default_applicable_licenses: ["external_pigweed_license"], | ||
} | ||
|
||
cc_library_headers { | ||
name: "pw_result_headers", | ||
cpp_std: "c++2a", | ||
vendor_available: true, | ||
export_include_dirs: [ | ||
"public", | ||
], | ||
host_supported: true, | ||
} |
Oops, something went wrong.