| 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 29 matching lines...) Expand all Loading... |
| 40 'layer.h', | 40 'layer.h', |
| 41 'layer_animation_delegate.h', | 41 'layer_animation_delegate.h', |
| 42 'layer_animation_element.cc', | 42 'layer_animation_element.cc', |
| 43 'layer_animation_element.h', | 43 'layer_animation_element.h', |
| 44 'layer_animation_observer.cc', | 44 'layer_animation_observer.cc', |
| 45 'layer_animation_observer.h', | 45 'layer_animation_observer.h', |
| 46 'layer_animation_sequence.cc', | 46 'layer_animation_sequence.cc', |
| 47 'layer_animation_sequence.h', | 47 'layer_animation_sequence.h', |
| 48 'layer_animator.cc', | 48 'layer_animator.cc', |
| 49 'layer_animator.h', | 49 'layer_animator.h', |
| 50 'layer_owner.cc', |
| 51 'layer_owner.h', |
| 50 'layer_type.h', | 52 'layer_type.h', |
| 51 'scoped_layer_animation_settings.cc', | 53 'scoped_layer_animation_settings.cc', |
| 52 'scoped_layer_animation_settings.h', | 54 'scoped_layer_animation_settings.h', |
| 53 'screen_rotation.cc', | 55 'screen_rotation.cc', |
| 54 'screen_rotation.h', | 56 'screen_rotation.h', |
| 55 # UI tests need TestWebGraphicsContext3D, so we always build it. | 57 # UI tests need TestWebGraphicsContext3D, so we always build it. |
| 56 'test_web_graphics_context_3d.cc', | 58 'test_web_graphics_context_3d.cc', |
| 57 'test_web_graphics_context_3d.h', | 59 'test_web_graphics_context_3d.h', |
| 58 ], | 60 ], |
| 59 'conditions': [ | 61 'conditions': [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 # osmesa GL implementation is used on linux. | 132 # osmesa GL implementation is used on linux. |
| 131 ['OS=="linux"', { | 133 ['OS=="linux"', { |
| 132 'dependencies': [ | 134 'dependencies': [ |
| 133 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 135 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 134 ], | 136 ], |
| 135 }], | 137 }], |
| 136 ], | 138 ], |
| 137 }, | 139 }, |
| 138 ], | 140 ], |
| 139 } | 141 } |
| OLD | NEW |