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 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 # GN version: //ui/accelerated_widget_mac |
| 12 'target_name': 'accelerated_widget_mac', |
| 13 'type': '<(component)', |
| 14 'sources': [ |
| 15 'accelerated_widget_mac.h', |
| 16 'accelerated_widget_mac.mm', |
| 17 'accelerated_widget_mac_export.h', |
| 18 'io_surface_context.h', |
| 19 'io_surface_context.mm', |
| 20 'io_surface_layer.h', |
| 21 'io_surface_layer.mm', |
| 22 'io_surface_texture.h', |
| 23 'io_surface_texture.mm', |
| 24 'software_layer.h', |
| 25 'software_layer.mm', |
| 26 'surface_handle_types.cc', |
| 27 'surface_handle_types.h', |
| 28 ], |
| 29 'defines': [ |
| 30 'ACCELERATED_WIDGET_MAC_IMPLEMENTATION', |
| 31 ], |
| 32 'dependencies': [ |
| 33 '<(DEPTH)/base/base.gyp:base', |
| 34 '<(DEPTH)/skia/skia.gyp:skia', |
| 35 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 36 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 37 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 38 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 39 ], |
| 40 'link_settings': { |
| 41 'libraries': [ |
| 42 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 43 ], |
| 44 }, |
| 45 }, |
| 46 ], |
| 47 } |
OLD | NEW |