ozone_extra.gni 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. # Copyright 2016 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. # This list contains the name of external platforms that are passed to the
  5. # --ozone-platform command line argument or used for the ozone_platform build
  6. # config. For example ozone_external_platforms = [ "foo1", "foo2", ... ]
  7. ozone_external_platforms = []
  8. # This list contains dependencies for external platforms. Typically, the Ozone
  9. # implementations are placed into ui/ozone/platform/ and so this will look
  10. # something like:
  11. # ozone_external_platform_deps = [ "platform/foo1", "platform/foo_2", ... ]
  12. ozone_external_platform_deps = []
  13. # If a platform has unit tests, the corresponding source_set can be listed here
  14. # so that they get included into ozone_unittests.
  15. # ozone_external_platform_test_deps = [ "platform/foo1:foo1_unitests", ... ]
  16. ozone_external_platform_test_deps = []
  17. # If a platform has integration tests, the corresponding source_set can be
  18. # listed here so that they get included into ozone_integration_tests.
  19. ozone_external_platform_integration_test_deps = []
  20. # If a platform has test support files for ui, the corresponding source_set can
  21. # be listed here so that they get included into ui_test_support.
  22. # ozone_external_platform_ui_test_support_deps = [ "platform/foo1:ui_test_support", ... ]
  23. ozone_external_platform_ui_test_support_deps = []
  24. # If a platform has a test support for interactive_ui_tests, the corresponding
  25. # source_set can be listed here so that they can included into
  26. # interactive_ui_tests.
  27. ozone_external_interactive_ui_tests_deps = []