| 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)/cc/cc.gyp:cc_surfaces', | 17 '<(DEPTH)/cc/cc.gyp:cc_surfaces', |
| 18 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common', | 18 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common', |
| 19 '<(DEPTH)/skia/skia.gyp:skia', | 19 '<(DEPTH)/skia/skia.gyp:skia', |
| 20 '<(DEPTH)/ui/events/blink/events_blink.gyp:events_blink', |
| 21 '<(DEPTH)/ui/events/events.gyp:events', |
| 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 22 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 22 '<(DEPTH)/ui/gl/gl.gyp:gl', | 24 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 23 ], | 25 ], |
| 24 'defines': [ | 26 'defines': [ |
| 25 'COMPOSITOR_IMPLEMENTATION', | 27 'COMPOSITOR_IMPLEMENTATION', |
| 26 ], | 28 ], |
| 27 'sources': [ | 29 'sources': [ |
| 28 'callback_layer_animation_observer.cc', | 30 'callback_layer_animation_observer.cc', |
| 29 'callback_layer_animation_observer.h', | 31 'callback_layer_animation_observer.h', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'layer_animator.h', | 65 'layer_animator.h', |
| 64 'layer_animator_collection.cc', | 66 'layer_animator_collection.cc', |
| 65 'layer_animator_collection.h', | 67 'layer_animator_collection.h', |
| 66 'layer_delegate.h', | 68 'layer_delegate.h', |
| 67 'layer_owner.cc', | 69 'layer_owner.cc', |
| 68 'layer_owner.h', | 70 'layer_owner.h', |
| 69 'layer_threaded_animation_delegate.h', | 71 'layer_threaded_animation_delegate.h', |
| 70 'layer_tree_owner.cc', | 72 'layer_tree_owner.cc', |
| 71 'layer_tree_owner.h', | 73 'layer_tree_owner.h', |
| 72 'layer_type.h', | 74 'layer_type.h', |
| 75 'overscroll/ui_input_handler.cc', |
| 76 'overscroll/ui_input_handler.h', |
| 77 'overscroll/ui_scroll_input_manager.cc', |
| 78 'overscroll/ui_scroll_input_manager.h', |
| 73 'paint_cache.cc', | 79 'paint_cache.cc', |
| 74 'paint_cache.h', | 80 'paint_cache.h', |
| 75 'paint_context.cc', | 81 'paint_context.cc', |
| 76 'paint_context.h', | 82 'paint_context.h', |
| 77 'paint_recorder.cc', | 83 'paint_recorder.cc', |
| 78 'paint_recorder.h', | 84 'paint_recorder.h', |
| 79 'reflector.cc', | 85 'reflector.cc', |
| 80 'reflector.h', | 86 'reflector.h', |
| 81 'scoped_animation_duration_scale_mode.cc', | 87 'scoped_animation_duration_scale_mode.cc', |
| 82 'scoped_animation_duration_scale_mode.h', | 88 'scoped_animation_duration_scale_mode.h', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'variables': { | 243 'variables': { |
| 238 'test_suite_name': 'compositor_unittests', | 244 'test_suite_name': 'compositor_unittests', |
| 239 }, | 245 }, |
| 240 'includes': [ | 246 'includes': [ |
| 241 '../../build/apk_test.gypi', | 247 '../../build/apk_test.gypi', |
| 242 ], | 248 ], |
| 243 }, | 249 }, |
| 244 ]}] | 250 ]}] |
| 245 ], | 251 ], |
| 246 } | 252 } |
| OLD | NEW |