| 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 10 matching lines...) Expand all Loading... |
| 21 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 21 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
| 22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', | 22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', |
| 23 ], | 23 ], |
| 24 'defines': [ | 24 'defines': [ |
| 25 'COMPOSITOR_IMPLEMENTATION', | 25 'COMPOSITOR_IMPLEMENTATION', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'compositor.cc', | 28 'compositor.cc', |
| 29 'compositor.h', | 29 'compositor.h', |
| 30 'compositor_export.h', | 30 'compositor_export.h', |
| 31 'compositor_cc.cc', | |
| 32 'compositor_cc.h', | |
| 33 'compositor_observer.h', | 31 'compositor_observer.h', |
| 34 'compositor_setup.h', | 32 'compositor_setup.h', |
| 35 'compositor_switches.cc', | 33 'compositor_switches.cc', |
| 36 'compositor_switches.h', | 34 'compositor_switches.h', |
| 37 'debug_utils.cc', | 35 'debug_utils.cc', |
| 38 'debug_utils.h', | 36 'debug_utils.h', |
| 39 'layer.cc', | 37 'layer.cc', |
| 40 'layer.h', | 38 'layer.h', |
| 41 'layer_animation_delegate.h', | 39 'layer_animation_delegate.h', |
| 42 'layer_animation_element.cc', | 40 'layer_animation_element.cc', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # osmesa GL implementation is used on linux. | 127 # osmesa GL implementation is used on linux. |
| 130 ['OS=="linux"', { | 128 ['OS=="linux"', { |
| 131 'dependencies': [ | 129 'dependencies': [ |
| 132 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 130 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 133 ], | 131 ], |
| 134 }], | 132 }], |
| 135 ], | 133 ], |
| 136 }, | 134 }, |
| 137 ], | 135 ], |
| 138 } | 136 } |
| OLD | NEW |