| 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)/gpu/gpu.gyp:command_buffer_common', | 17 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common', |
| 18 '<(DEPTH)/skia/skia.gyp:skia', | 18 '<(DEPTH)/skia/skia.gyp:skia', |
| 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 21 '<(DEPTH)/ui/gl/gl.gyp:gl', | 21 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 22 ], | 22 ], |
| 23 'defines': [ | 23 'defines': [ |
| 24 'COMPOSITOR_IMPLEMENTATION', | 24 'COMPOSITOR_IMPLEMENTATION', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 'clone_layer.cc', |
| 28 'clone_layer.h', |
| 27 'compositor.cc', | 29 'compositor.cc', |
| 28 'compositor.h', | 30 'compositor.h', |
| 29 'compositor_export.h', | 31 'compositor_export.h', |
| 30 'compositor_observer.h', | 32 'compositor_observer.h', |
| 31 'compositor_vsync_manager.cc', | 33 'compositor_vsync_manager.cc', |
| 32 'compositor_vsync_manager.h', | 34 'compositor_vsync_manager.h', |
| 33 'compositor_switches.cc', | 35 'compositor_switches.cc', |
| 34 'compositor_switches.h', | 36 'compositor_switches.h', |
| 35 'debug_utils.cc', | 37 'debug_utils.cc', |
| 36 'debug_utils.h', | 38 'debug_utils.h', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'dependencies': [ | 167 'dependencies': [ |
| 166 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 168 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 167 ], | 169 ], |
| 168 }], | 170 }], |
| 169 ], | 171 ], |
| 170 }], | 172 }], |
| 171 ], | 173 ], |
| 172 }, | 174 }, |
| 173 ], | 175 ], |
| 174 } | 176 } |
| OLD | NEW |