In this code drop we introduce the ODK dependency. The reference implementation has been updated to make use of the ODK and the related tests have been included. In addition, we have included an example of how a shared libraries can be created. This will allow make it easier to test and verify different implementations of the API. Most other changes introduce by this code drop were made to clean-up the reference implementation and limit dependencies.
14 lines
383 B
Python
14 lines
383 B
Python
# Copyright 2020 Google LLC. All Rights Reserved.
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "odk_deps",
|
|
hdrs = ["license_protocol.pb.h"],
|
|
strip_include_prefix = "//odk_deps/",
|
|
deps = [
|
|
"//chromium_deps/cdm/protos/defs:certificate_provisioning_proto",
|
|
"//chromium_deps/cdm/protos/defs:license_protocol_proto",
|
|
],
|
|
)
|