Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac | 5 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac |
| 6 component("accelerated_widget_mac") { | 6 component("accelerated_widget_mac") { |
| 7 sources = [ | 7 sources = [ |
| 8 "accelerated_widget_mac.h", | 8 "accelerated_widget_mac.h", |
| 9 "accelerated_widget_mac.mm", | 9 "accelerated_widget_mac.mm", |
| 10 "accelerated_widget_mac_export.h", | 10 "accelerated_widget_mac_export.h", |
| 11 "display_link_mac.cc", | 11 "display_link_mac.cc", |
| 12 "display_link_mac.h", | 12 "display_link_mac.h", |
| 13 "io_surface_context.h", | 13 "io_surface_context.h", |
| 14 "io_surface_context.mm", | 14 "io_surface_context.mm", |
| 15 "io_surface_layer.h", | |
| 16 "io_surface_layer.mm", | |
| 17 "io_surface_texture.h", | |
| 18 "io_surface_texture.mm", | |
| 19 "software_layer.h", | |
| 20 "software_layer.mm", | |
| 21 "surface_handle_types.cc", | 15 "surface_handle_types.cc", |
| 22 "surface_handle_types.h", | 16 "surface_handle_types.h", |
| 23 "window_resize_helper_mac.cc", | 17 "window_resize_helper_mac.cc", |
| 24 "window_resize_helper_mac.h", | 18 "window_resize_helper_mac.h", |
| 25 ] | 19 ] |
| 26 | 20 |
| 27 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] | 21 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] |
| 28 | 22 |
| 29 deps = [ | 23 deps = [ |
| 30 "//base", | 24 "//base", |
| 31 "//skia", | 25 "//skia", |
| 32 "//ui/base", | 26 "//ui/base", |
| 33 "//ui/events", | 27 "//ui/events", |
| 34 "//ui/events:events_base", | 28 "//ui/events:events_base", |
| 35 "//ui/gfx/geometry", | 29 "//ui/gfx/geometry", |
| 36 "//ui/gl", | 30 "//ui/gl", |
| 37 ] | 31 ] |
| 38 | 32 |
| 39 libs = [ | 33 libs = [ |
| 40 # Required by io_surface_texture.mm. | 34 # Required by io_surface_texture.mm. |
|
tapted
2015/10/26 02:51:41
This comment needs updating - perhaps call out io_
ccameron
2015/10/26 06:40:34
Actually, this can be removed now.
| |
| 41 "IOSurface.framework", | 35 "IOSurface.framework", |
| 42 "OpenGL.framework", | 36 "OpenGL.framework", |
| 43 "QuartzCore.framework", | 37 "QuartzCore.framework", |
| 44 ] | 38 ] |
| 45 } | 39 } |
| OLD | NEW |