| 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 "io_surface_context.h", | 11 "io_surface_context.h", |
| 12 "io_surface_context.mm", | 12 "io_surface_context.mm", |
| 13 "io_surface_layer.h", | 13 "io_surface_layer.h", |
| 14 "io_surface_layer.mm", | 14 "io_surface_layer.mm", |
| 15 "io_surface_texture.h", | 15 "io_surface_texture.h", |
| 16 "io_surface_texture.mm", | 16 "io_surface_texture.mm", |
| 17 "software_layer.h", | 17 "software_layer.h", |
| 18 "software_layer.mm", | 18 "software_layer.mm", |
| 19 "surface_handle_types.cc", | 19 "surface_handle_types.cc", |
| 20 "surface_handle_types.h", | 20 "surface_handle_types.h", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] | 23 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//skia", | 27 "//skia", |
| 28 "//ui/base", | 28 "//ui/base", |
| 29 "//ui/events", | 29 "//ui/events", |
| 30 "//ui/events:events_base", | |
| 31 "//ui/gfx/geometry", | 30 "//ui/gfx/geometry", |
| 32 "//ui/gl", | 31 "//ui/gl", |
| 33 ] | 32 ] |
| 34 | 33 |
| 35 libs = [ | 34 libs = [ "QuartzCore.framework" ] |
| 36 # Required by io_surface_texture.mm. | |
| 37 "IOSurface.framework", | |
| 38 "OpenGL.framework", | |
| 39 "QuartzCore.framework", | |
| 40 ] | |
| 41 } | 35 } |
| OLD | NEW |