| 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 27 matching lines...) Expand all Loading... |
| 38 'dip_util.h', | 38 'dip_util.h', |
| 39 'layer.cc', | 39 'layer.cc', |
| 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_animation_timer.h', |
| 48 'layer_animator.cc', | 49 'layer_animator.cc', |
| 49 'layer_animator.h', | 50 'layer_animator.h', |
| 50 'layer_delegate.h', | 51 'layer_delegate.h', |
| 51 'layer_owner.cc', | 52 'layer_owner.cc', |
| 52 'layer_owner.h', | 53 'layer_owner.h', |
| 53 'layer_type.h', | 54 'layer_type.h', |
| 54 'scoped_layer_animation_settings.cc', | 55 'scoped_layer_animation_settings.cc', |
| 55 'scoped_layer_animation_settings.h', | 56 'scoped_layer_animation_settings.h', |
| 56 # UI tests need TestWebGraphicsContext3D, so we always build it. | 57 # UI tests need TestWebGraphicsContext3D, so we always build it. |
| 57 'test_web_graphics_context_3d.cc', | 58 'test_web_graphics_context_3d.cc', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'layer_unittest.cc', | 115 'layer_unittest.cc', |
| 115 'run_all_unittests.cc', | 116 'run_all_unittests.cc', |
| 116 'test/test_compositor_host.h', | 117 'test/test_compositor_host.h', |
| 117 'test/test_compositor_host_linux.cc', | 118 'test/test_compositor_host_linux.cc', |
| 118 'test/test_compositor_host_mac.mm', | 119 'test/test_compositor_host_mac.mm', |
| 119 'test/test_compositor_host_win.cc', | 120 'test/test_compositor_host_win.cc', |
| 120 'test/test_layer_animation_delegate.cc', | 121 'test/test_layer_animation_delegate.cc', |
| 121 'test/test_layer_animation_delegate.h', | 122 'test/test_layer_animation_delegate.h', |
| 122 'test/test_layer_animation_observer.cc', | 123 'test/test_layer_animation_observer.cc', |
| 123 'test/test_layer_animation_observer.h', | 124 'test/test_layer_animation_observer.h', |
| 125 'test/test_layer_animation_timer.cc', |
| 126 'test/test_layer_animation_timer.h', |
| 124 'test/test_suite.cc', | 127 'test/test_suite.cc', |
| 125 'test/test_suite.h', | 128 'test/test_suite.h', |
| 126 'test/test_utils.cc', | 129 'test/test_utils.cc', |
| 127 'test/test_utils.h', | 130 'test/test_utils.h', |
| 128 ], | 131 ], |
| 129 'conditions': [ | 132 'conditions': [ |
| 130 # osmesa GL implementation is used on linux. | 133 # osmesa GL implementation is used on linux. |
| 131 ['OS=="linux"', { | 134 ['OS=="linux"', { |
| 132 'dependencies': [ | 135 'dependencies': [ |
| 133 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 136 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 134 ], | 137 ], |
| 135 }], | 138 }], |
| 136 ], | 139 ], |
| 137 }, | 140 }, |
| 138 ], | 141 ], |
| 139 } | 142 } |
| OLD | NEW |