Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: ui/compositor/compositor.gyp

Issue 753933002: MacViews: Move content::AcceleratedWidget to new component, ui/accelerated_widget_mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20141124-MacViews-MoveSoftwareLayerMac-fromcl
Patch Set: rebase to master Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'layer_animator.cc', 55 'layer_animator.cc',
56 'layer_animator.h', 56 'layer_animator.h',
57 'layer_animator_collection.cc', 57 'layer_animator_collection.cc',
58 'layer_animator_collection.h', 58 'layer_animator_collection.h',
59 'layer_delegate.h', 59 'layer_delegate.h',
60 'layer_owner.cc', 60 'layer_owner.cc',
61 'layer_owner.h', 61 'layer_owner.h',
62 'layer_tree_owner.cc', 62 'layer_tree_owner.cc',
63 'layer_tree_owner.h', 63 'layer_tree_owner.h',
64 'layer_type.h', 64 'layer_type.h',
65 'mac/accelerated_widget_mac.mm',
66 'mac/accelerated_widget_mac.h',
67 'mac/io_surface_context_mac.h',
68 'mac/io_surface_context_mac.mm',
69 'mac/io_surface_layer_mac.h',
70 'mac/io_surface_layer_mac.mm',
71 'mac/io_surface_texture_mac.h',
72 'mac/io_surface_texture_mac.mm',
73 'mac/software_layer.h',
74 'mac/software_layer.mm',
75 'mac/surface_handle_types_mac.cc',
76 'mac/surface_handle_types_mac.h',
65 'reflector.h', 77 'reflector.h',
66 'scoped_animation_duration_scale_mode.cc', 78 'scoped_animation_duration_scale_mode.cc',
67 'scoped_animation_duration_scale_mode.h', 79 'scoped_animation_duration_scale_mode.h',
68 'scoped_layer_animation_settings.cc', 80 'scoped_layer_animation_settings.cc',
69 'scoped_layer_animation_settings.h', 81 'scoped_layer_animation_settings.h',
70 'transform_animation_curve_adapter.cc', 82 'transform_animation_curve_adapter.cc',
71 'transform_animation_curve_adapter.h', 83 'transform_animation_curve_adapter.h',
72 ], 84 ],
73 'conditions': [ 85 'conditions': [
74 ['OS == "win" and use_aura == 1', { 86 ['OS == "win" and use_aura == 1', {
75 # TODO(sky): before we make this real need to remove 87 # TODO(sky): before we make this real need to remove
76 # IDR_BITMAP_BRUSH_IMAGE. 88 # IDR_BITMAP_BRUSH_IMAGE.
77 'dependencies': [ 89 'dependencies': [
78 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 90 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
79 '<(angle_path)/src/angle.gyp:libEGL', 91 '<(angle_path)/src/angle.gyp:libEGL',
80 '<(angle_path)/src/angle.gyp:libGLESv2', 92 '<(angle_path)/src/angle.gyp:libGLESv2',
81 ], 93 ],
82 }], 94 }],
95 ['OS=="mac"', {
96 'dependencies': [
ccameron 2014/11/26 18:36:52 (likewise WRT base)
tapted 2014/11/27 02:50:33 Done.
97 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
98 '<(DEPTH)/ui/events/events.gyp:events_base',
99 ],
100 'link_settings': {
101 'libraries': [
102 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
103 ],
104 },
105 }],
83 ], 106 ],
84 }, 107 },
85 { 108 {
86 'target_name': 'compositor_test_support', 109 'target_name': 'compositor_test_support',
87 'type': 'static_library', 110 'type': 'static_library',
88 'dependencies': [ 111 'dependencies': [
89 '<(DEPTH)/base/base.gyp:base', 112 '<(DEPTH)/base/base.gyp:base',
90 '<(DEPTH)/cc/cc.gyp:cc', 113 '<(DEPTH)/cc/cc.gyp:cc',
91 '<(DEPTH)/cc/cc.gyp:cc_surfaces', 114 '<(DEPTH)/cc/cc.gyp:cc_surfaces',
92 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 115 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 'dependencies': [ 197 'dependencies': [
175 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 198 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
176 ], 199 ],
177 }], 200 }],
178 ], 201 ],
179 }], 202 }],
180 ], 203 ],
181 }, 204 },
182 ], 205 ],
183 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698