BUILD.gn 619 B

1234567891011121314151617181920212223242526
  1. # Copyright 2018 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. component("wm") {
  5. output_name = "platform_window_wm"
  6. sources = [
  7. "wm_drag_handler.cc",
  8. "wm_drag_handler.h",
  9. "wm_drop_handler.cc",
  10. "wm_drop_handler.h",
  11. "wm_move_loop_handler.cc",
  12. "wm_move_loop_handler.h",
  13. "wm_move_resize_handler.cc",
  14. "wm_move_resize_handler.h",
  15. ]
  16. defines = [ "IS_WM_IMPL" ]
  17. public_deps = [ "//ui/base/dragdrop/mojom:mojom_headers" ]
  18. deps = [
  19. "//ui/base",
  20. "//ui/platform_window",
  21. ]
  22. }