| 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 11 matching lines...) Expand all Loading... |
| 22 '<(DEPTH)/ui/gl/gl.gyp:gl', | 22 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 23 ], | 23 ], |
| 24 'defines': [ | 24 'defines': [ |
| 25 'COMPOSITOR_IMPLEMENTATION', | 25 'COMPOSITOR_IMPLEMENTATION', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'callback_layer_animation_observer.cc', | 28 'callback_layer_animation_observer.cc', |
| 29 'callback_layer_animation_observer.h', | 29 'callback_layer_animation_observer.h', |
| 30 'canvas_painter.cc', | 30 'canvas_painter.cc', |
| 31 'canvas_painter.h', | 31 'canvas_painter.h', |
| 32 'clip_transform_recorder.cc', | 32 'clip_recorder.cc', |
| 33 'clip_transform_recorder.h', | 33 'clip_recorder.h', |
| 34 'closure_animation_observer.cc', | 34 'closure_animation_observer.cc', |
| 35 'closure_animation_observer.h', | 35 'closure_animation_observer.h', |
| 36 'compositing_recorder.cc', | 36 'compositing_recorder.cc', |
| 37 'compositing_recorder.h', | 37 'compositing_recorder.h', |
| 38 'compositor.cc', | 38 'compositor.cc', |
| 39 'compositor.h', | 39 'compositor.h', |
| 40 'compositor_animation_observer.h', | 40 'compositor_animation_observer.h', |
| 41 'compositor_export.h', | 41 'compositor_export.h', |
| 42 'compositor_observer.h', | 42 'compositor_observer.h', |
| 43 'compositor_switches.cc', | 43 'compositor_switches.cc', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'paint_recorder.cc', | 76 'paint_recorder.cc', |
| 77 'paint_recorder.h', | 77 'paint_recorder.h', |
| 78 'reflector.cc', | 78 'reflector.cc', |
| 79 'reflector.h', | 79 'reflector.h', |
| 80 'scoped_animation_duration_scale_mode.cc', | 80 'scoped_animation_duration_scale_mode.cc', |
| 81 'scoped_animation_duration_scale_mode.h', | 81 'scoped_animation_duration_scale_mode.h', |
| 82 'scoped_layer_animation_settings.cc', | 82 'scoped_layer_animation_settings.cc', |
| 83 'scoped_layer_animation_settings.h', | 83 'scoped_layer_animation_settings.h', |
| 84 'transform_animation_curve_adapter.cc', | 84 'transform_animation_curve_adapter.cc', |
| 85 'transform_animation_curve_adapter.h', | 85 'transform_animation_curve_adapter.h', |
| 86 'transform_recorder.cc', |
| 87 'transform_recorder.h', |
| 86 ], | 88 ], |
| 87 'conditions': [ | 89 'conditions': [ |
| 88 ['OS == "win" and use_aura == 1', { | 90 ['OS == "win" and use_aura == 1', { |
| 89 # TODO(sky): before we make this real need to remove | 91 # TODO(sky): before we make this real need to remove |
| 90 # IDR_BITMAP_BRUSH_IMAGE. | 92 # IDR_BITMAP_BRUSH_IMAGE. |
| 91 'dependencies': [ | 93 'dependencies': [ |
| 92 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 94 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
| 93 '<(angle_path)/src/angle.gyp:libEGL', | 95 '<(angle_path)/src/angle.gyp:libEGL', |
| 94 '<(angle_path)/src/angle.gyp:libGLESv2', | 96 '<(angle_path)/src/angle.gyp:libGLESv2', |
| 95 ], | 97 ], |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 'variables': { | 240 'variables': { |
| 239 'test_suite_name': 'compositor_unittests', | 241 'test_suite_name': 'compositor_unittests', |
| 240 }, | 242 }, |
| 241 'includes': [ | 243 'includes': [ |
| 242 '../../build/apk_test.gypi', | 244 '../../build/apk_test.gypi', |
| 243 ], | 245 ], |
| 244 }, | 246 }, |
| 245 ]}] | 247 ]}] |
| 246 ], | 248 ], |
| 247 } | 249 } |
| OLD | NEW |