| OLD | NEW |
| 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 Loading... |
| 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/surface_handle_types_mac.cc', |
| 74 'mac/surface_handle_types_mac.h', |
| 65 'reflector.h', | 75 'reflector.h', |
| 66 'scoped_animation_duration_scale_mode.cc', | 76 'scoped_animation_duration_scale_mode.cc', |
| 67 'scoped_animation_duration_scale_mode.h', | 77 'scoped_animation_duration_scale_mode.h', |
| 68 'scoped_layer_animation_settings.cc', | 78 'scoped_layer_animation_settings.cc', |
| 69 'scoped_layer_animation_settings.h', | 79 'scoped_layer_animation_settings.h', |
| 70 'transform_animation_curve_adapter.cc', | 80 'transform_animation_curve_adapter.cc', |
| 71 'transform_animation_curve_adapter.h', | 81 'transform_animation_curve_adapter.h', |
| 72 ], | 82 ], |
| 73 'conditions': [ | 83 'conditions': [ |
| 74 ['OS == "win" and use_aura == 1', { | 84 ['OS == "win" and use_aura == 1', { |
| 75 # TODO(sky): before we make this real need to remove | 85 # TODO(sky): before we make this real need to remove |
| 76 # IDR_BITMAP_BRUSH_IMAGE. | 86 # IDR_BITMAP_BRUSH_IMAGE. |
| 77 'dependencies': [ | 87 'dependencies': [ |
| 78 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 88 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
| 79 '<(angle_path)/src/angle.gyp:libEGL', | 89 '<(angle_path)/src/angle.gyp:libEGL', |
| 80 '<(angle_path)/src/angle.gyp:libGLESv2', | 90 '<(angle_path)/src/angle.gyp:libGLESv2', |
| 81 ], | 91 ], |
| 82 }], | 92 }], |
| 93 ['OS=="mac"', { |
| 94 'dependencies': [ |
| 95 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 96 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 97 ], |
| 98 'link_settings': { |
| 99 'libraries': [ |
| 100 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 101 ], |
| 102 }, |
| 103 }], |
| 83 ], | 104 ], |
| 84 }, | 105 }, |
| 85 { | 106 { |
| 86 'target_name': 'compositor_test_support', | 107 'target_name': 'compositor_test_support', |
| 87 'type': 'static_library', | 108 'type': 'static_library', |
| 88 'dependencies': [ | 109 'dependencies': [ |
| 89 '<(DEPTH)/base/base.gyp:base', | 110 '<(DEPTH)/base/base.gyp:base', |
| 90 '<(DEPTH)/cc/cc.gyp:cc', | 111 '<(DEPTH)/cc/cc.gyp:cc', |
| 91 '<(DEPTH)/cc/cc.gyp:cc_surfaces', | 112 '<(DEPTH)/cc/cc.gyp:cc_surfaces', |
| 92 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 113 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 'dependencies': [ | 195 'dependencies': [ |
| 175 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 196 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 176 ], | 197 ], |
| 177 }], | 198 }], |
| 178 ], | 199 ], |
| 179 }], | 200 }], |
| 180 ], | 201 ], |
| 181 }, | 202 }, |
| 182 ], | 203 ], |
| 183 } | 204 } |
| OLD | NEW |