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 { | 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 'io_surface_layer.h', | |
| 23 'io_surface_layer.mm', | |
| 24 'io_surface_texture.h', | |
| 25 'io_surface_texture.mm', | |
| 26 'software_layer.h', | |
| 27 'software_layer.mm', | |
| 28 'surface_handle_types.cc', | 22 'surface_handle_types.cc', |
| 29 'surface_handle_types.h', | 23 'surface_handle_types.h', |
| 30 'window_resize_helper_mac.cc', | 24 'window_resize_helper_mac.cc', |
| 31 'window_resize_helper_mac.h', | 25 'window_resize_helper_mac.h', |
| 32 ], | 26 ], |
| 33 'defines': [ | 27 'defines': [ |
| 34 'ACCELERATED_WIDGET_MAC_IMPLEMENTATION', | 28 'ACCELERATED_WIDGET_MAC_IMPLEMENTATION', |
| 35 ], | 29 ], |
| 36 'dependencies': [ | 30 'dependencies': [ |
| 37 '<(DEPTH)/base/base.gyp:base', | 31 '<(DEPTH)/base/base.gyp:base', |
| 38 '<(DEPTH)/skia/skia.gyp:skia', | 32 '<(DEPTH)/skia/skia.gyp:skia', |
| 39 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', | 33 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 40 '<(DEPTH)/ui/events/events.gyp:events_base', | 34 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 41 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 35 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 42 '<(DEPTH)/ui/gl/gl.gyp:gl', | 36 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 43 ], | 37 ], |
| 44 'link_settings': { | 38 'link_settings': { |
| 45 'libraries': [ | 39 'libraries': [ |
| 46 # Required by io_surface_texture.mm. | 40 # Required by io_surface_texture.mm. |
|
tapted
2015/10/26 02:51:41
(here too)
ccameron
2015/10/26 06:40:34
Removed.
| |
| 47 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', | 41 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', |
| 48 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 42 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 49 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 43 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 50 ], | 44 ], |
| 51 }, | 45 }, |
| 52 }, | 46 }, |
| 53 ], | 47 ], |
| 54 } | 48 } |
| OLD | NEW |