Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 5 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac | |
| 6 component("accelerated_widget_mac") { | |
| 7 sources = [ | |
| 8 "accelerated_widget_mac.h", | |
| 9 "accelerated_widget_mac.mm", | |
| 10 "accelerated_widget_export.h", | |
|
Avi (use Gerrit)
2014/11/27 03:16:02
alphabetical
tapted
2014/11/27 05:58:41
Whoops. The gn build built fine, but I forgot to r
| |
| 11 "io_surface_context.h", | |
| 12 "io_surface_context.mm", | |
| 13 "io_surface_layer.h", | |
| 14 "io_surface_layer.mm", | |
| 15 "io_surface_texture.h", | |
| 16 "io_surface_texture.mm", | |
| 17 "software_layer.h", | |
| 18 "software_layer.mm", | |
| 19 "surface_handle_types.cc", | |
| 20 "surface_handle_types.h", | |
| 21 ] | |
| 22 | |
| 23 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] | |
| 24 | |
| 25 deps = [ | |
| 26 "//base", | |
| 27 "//skia", | |
| 28 "//ui/events", | |
| 29 "//ui/gfx/geometry", | |
| 30 "//ui/gl", | |
| 31 ] | |
| 32 | |
| 33 libs = [ | |
| 34 "QuartzCore.framework", | |
| 35 ] | |
| 36 } | |
| OLD | NEW |