tree: a5b8039584028dac68851158c73d337e70ecd468 [path history] [tgz]
  1. BUILD.gn
  2. DEPS
  3. DIR_METADATA
  4. logging.cc
  5. message_port_tls_connection.cc
  6. message_port_tls_connection.h
  7. message_port_tls_connection_unittest.cc
  8. net_udp_socket.cc
  9. net_udp_socket.h
  10. network_context.cc
  11. network_context.h
  12. network_util.cc
  13. network_util.h
  14. OWNERS
  15. README.md
  16. task_runner.cc
  17. task_runner.h
  18. time.cc
  19. tls_client_connection.cc
  20. tls_client_connection.h
  21. tls_client_connection_unittest.cc
  22. tls_connection_factory.cc
  23. tls_connection_factory.h
  24. tls_connection_factory_unittest.cc
  25. trace_logging_platform.cc
  26. udp_socket.cc
  27. udp_socket.h
components/openscreen_platform/README.md

This directory contains an implementation of the Open Screen platform API along with utility functions, using the //base and //net directories in Chromium.

Any Chromium target that (indirectly) depends on //third_party/openscreen/src/platform:api must also (indirectly) depend on one of two components provided by this component. In nearly all cases, the dependency should be in the same deps as //third_party/openscreen/src/platform:api. Most external targets should depend on //components/openscreen_platform. Targets that cannot use the Network Service should instead depend on //components/openscreen_platform:openscreen_platform_using_net_sockets, which uses a //net-based implementation of UdpSocket. These two targets are incompatible with each other.

A very small set of intermediary targets that are used by both types of targets above depend directly on //components/openscreen_platform:openscreen_platform_without_sockets and push the requirement to depend on one of the two public targets up to the dependency chain.