BUILD.gn 557 B

1234567891011121314151617181920212223242526
  1. # Copyright 2014 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. import("//build/config/ui.gni")
  5. component("surface") {
  6. sources = [
  7. "surface_export.h",
  8. "transport_dib.cc",
  9. "transport_dib.h",
  10. ]
  11. configs += [ "//third_party/khronos:khronos_headers" ]
  12. defines = [ "SURFACE_IMPLEMENTATION" ]
  13. deps = [
  14. "//base",
  15. "//base/third_party/dynamic_annotations",
  16. "//skia",
  17. "//ui/base",
  18. "//ui/gfx/geometry",
  19. "//ui/gl",
  20. ]
  21. }