| 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 { |
| 11 'target_name': 'compositor', | 11 'target_name': 'compositor', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
| 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 16 '<(DEPTH)/cc/cc.gyp:cc', | 16 '<(DEPTH)/cc/cc.gyp:cc', |
| 17 '<(DEPTH)/skia/skia.gyp:skia', | 17 '<(DEPTH)/skia/skia.gyp:skia', |
| 18 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 18 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 20 '<(DEPTH)/ui/gl/gl.gyp:gl', | 20 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 21 ], | 21 ], |
| 22 'defines': [ | 22 'defines': [ |
| 23 'COMPOSITOR_IMPLEMENTATION', | 23 'COMPOSITOR_IMPLEMENTATION', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'compositor.cc', | 26 'compositor.cc', |
| 27 'compositor.h', | 27 'compositor.h', |
| 28 'compositor_export.h', | 28 'compositor_export.h', |
| 29 'compositor_observer.h', | 29 'compositor_observer.h', |
| 30 'compositor_vsync_manager.cc', | |
| 31 'compositor_vsync_manager.h', | |
| 32 'compositor_switches.cc', | 30 'compositor_switches.cc', |
| 33 'compositor_switches.h', | 31 'compositor_switches.h', |
| 34 'debug_utils.cc', | 32 'debug_utils.cc', |
| 35 'debug_utils.h', | 33 'debug_utils.h', |
| 36 'dip_util.cc', | 34 'dip_util.cc', |
| 37 'dip_util.h', | 35 'dip_util.h', |
| 38 'float_animation_curve_adapter.cc', | 36 'float_animation_curve_adapter.cc', |
| 39 'float_animation_curve_adapter.h', | 37 'float_animation_curve_adapter.h', |
| 40 'layer.cc', | 38 'layer.cc', |
| 41 'layer.h', | 39 'layer.h', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 'dependencies': [ | 154 'dependencies': [ |
| 157 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 155 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 158 ], | 156 ], |
| 159 }], | 157 }], |
| 160 ], | 158 ], |
| 161 }], | 159 }], |
| 162 ], | 160 ], |
| 163 }, | 161 }, |
| 164 ], | 162 ], |
| 165 } | 163 } |
| OLD | NEW |