| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'layer_animator.h', | 49 'layer_animator.h', |
| 50 'scoped_layer_animation_settings.cc', | 50 'scoped_layer_animation_settings.cc', |
| 51 'scoped_layer_animation_settings.h', | 51 'scoped_layer_animation_settings.h', |
| 52 'screen_rotation.cc', | 52 'screen_rotation.cc', |
| 53 'screen_rotation.h', | 53 'screen_rotation.h', |
| 54 # UI tests need TestWebGraphicsContext3D, so we always build it. | 54 # UI tests need TestWebGraphicsContext3D, so we always build it. |
| 55 'test_web_graphics_context_3d.cc', | 55 'test_web_graphics_context_3d.cc', |
| 56 'test_web_graphics_context_3d.h', | 56 'test_web_graphics_context_3d.h', |
| 57 ], | 57 ], |
| 58 'conditions': [ | 58 'conditions': [ |
| 59 ['OS == "win" and views_compositor == 1', { | 59 ['OS == "win" and use_aura == 1', { |
| 60 # TODO(sky): before we make this real need to remove | 60 # TODO(sky): before we make this real need to remove |
| 61 # IDR_BITMAP_BRUSH_IMAGE. | 61 # IDR_BITMAP_BRUSH_IMAGE. |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '<(DEPTH)/ui/ui.gyp:gfx_resources', | 63 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
| 64 '<(DEPTH)/third_party/angle/src/build_angle.gyp:libEGL', | 64 '<(DEPTH)/third_party/angle/src/build_angle.gyp:libEGL', |
| 65 '<(DEPTH)/third_party/angle/src/build_angle.gyp:libGLESv2', | 65 '<(DEPTH)/third_party/angle/src/build_angle.gyp:libGLESv2', |
| 66 ], | 66 ], |
| 67 }], | 67 }], |
| 68 ], | 68 ], |
| 69 }, | 69 }, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # osmesa GL implementation is used on linux. | 129 # osmesa GL implementation is used on linux. |
| 130 ['OS=="linux"', { | 130 ['OS=="linux"', { |
| 131 'dependencies': [ | 131 'dependencies': [ |
| 132 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 132 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 133 ], | 133 ], |
| 134 }], | 134 }], |
| 135 ], | 135 ], |
| 136 }, | 136 }, |
| 137 ], | 137 ], |
| 138 } | 138 } |
| OLD | NEW |