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