| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
| 10 'sources/': [ | 10 'sources/': [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'compositor.cc', | 38 'compositor.cc', |
| 39 'compositor.h', | 39 'compositor.h', |
| 40 'compositor_export.h', | 40 'compositor_export.h', |
| 41 'compositor_gl.cc', | 41 'compositor_gl.cc', |
| 42 'compositor_gl.h', | 42 'compositor_gl.h', |
| 43 'compositor_cc.cc', | 43 'compositor_cc.cc', |
| 44 'compositor_cc.h', | 44 'compositor_cc.h', |
| 45 'compositor_observer.h', | 45 'compositor_observer.h', |
| 46 'compositor_stub.cc', | 46 'compositor_stub.cc', |
| 47 'compositor_win.cc', | 47 'compositor_win.cc', |
| 48 'dummy_layer_animation_delegate.cc', | |
| 49 'dummy_layer_animation_delegate.h', | |
| 50 'layer.cc', | 48 'layer.cc', |
| 51 'layer.h', | 49 'layer.h', |
| 52 'layer_animation_delegate.h', | 50 'layer_animation_delegate.h', |
| 53 'layer_animation_element.cc', | 51 'layer_animation_element.cc', |
| 54 'layer_animation_element.h', | 52 'layer_animation_element.h', |
| 53 'layer_animation_observer.h', |
| 55 'layer_animation_sequence.cc', | 54 'layer_animation_sequence.cc', |
| 56 'layer_animation_sequence.h', | 55 'layer_animation_sequence.h', |
| 57 'layer_animator.cc', | 56 'layer_animator.cc', |
| 58 'layer_animator.h', | 57 'layer_animator.h', |
| 59 ], | 58 ], |
| 60 'conditions': [ | 59 'conditions': [ |
| 61 ['os_posix == 1 and OS != "mac"', { | 60 ['os_posix == 1 and OS != "mac"', { |
| 62 'sources!': [ | 61 'sources!': [ |
| 63 'compositor_stub.cc', | 62 'compositor_stub.cc', |
| 64 ], | 63 ], |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ], | 138 ], |
| 140 'sources': [ | 139 'sources': [ |
| 141 'layer_animation_element_unittest.cc', | 140 'layer_animation_element_unittest.cc', |
| 142 'layer_animation_sequence_unittest.cc', | 141 'layer_animation_sequence_unittest.cc', |
| 143 'layer_animator_unittest.cc', | 142 'layer_animator_unittest.cc', |
| 144 'layer_unittest.cc', | 143 'layer_unittest.cc', |
| 145 'run_all_unittests.cc', | 144 'run_all_unittests.cc', |
| 146 'test_compositor_host.h', | 145 'test_compositor_host.h', |
| 147 'test_compositor_host_linux.cc', | 146 'test_compositor_host_linux.cc', |
| 148 'test_compositor_host_win.cc', | 147 'test_compositor_host_win.cc', |
| 148 'test_layer_animation_delegate.cc', |
| 149 'test_layer_animation_delegate.h', |
| 150 'test_layer_animation_observer.cc', |
| 151 'test_layer_animation_observer.h', |
| 149 'test_suite.cc', | 152 'test_suite.cc', |
| 150 'test_suite.h', | 153 'test_suite.h', |
| 151 'test_utils.cc', | 154 'test_utils.cc', |
| 152 'test_utils.h', | 155 'test_utils.h', |
| 153 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 156 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 154 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 157 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 155 ], | 158 ], |
| 156 'conditions': [ | 159 'conditions': [ |
| 157 # osmesa GL implementation is used on linux. | 160 # osmesa GL implementation is used on linux. |
| 158 ['OS=="linux"', { | 161 ['OS=="linux"', { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 181 ['toolkit_views == 1', { | 184 ['toolkit_views == 1', { |
| 182 'dependencies': [ | 185 'dependencies': [ |
| 183 '<(DEPTH)/skia/skia.gyp:skia', | 186 '<(DEPTH)/skia/skia.gyp:skia', |
| 184 'compositor', | 187 'compositor', |
| 185 ], | 188 ], |
| 186 'sources': [ | 189 'sources': [ |
| 187 'test_compositor.cc', | 190 'test_compositor.cc', |
| 188 'test_compositor.h', | 191 'test_compositor.h', |
| 189 'test_texture.cc', | 192 'test_texture.cc', |
| 190 'test_texture.h', | 193 'test_texture.h', |
| 191 ], | 194 ], |
| 192 }], | 195 }], |
| 193 ], | 196 ], |
| 194 }, | 197 }, |
| 195 ], | 198 ], |
| 196 } | 199 } |
| OLD | NEW |