| 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'layout_manager.cc', | 46 'layout_manager.cc', |
| 47 'layout_manager.h', | 47 'layout_manager.h', |
| 48 'screen_aura.cc', | 48 'screen_aura.cc', |
| 49 'screen_aura.h', | 49 'screen_aura.h', |
| 50 'window.cc', | 50 'window.cc', |
| 51 'window.h', | 51 'window.h', |
| 52 'window_delegate.h', | 52 'window_delegate.h', |
| 53 'window_observer.h', | 53 'window_observer.h', |
| 54 'window_types.h', | 54 'window_types.h', |
| 55 ], | 55 ], |
| 56 'conditions': [ |
| 57 ['use_ibus==1', { |
| 58 'dependencies': [ |
| 59 '../../build/linux/system.gyp:ibus', |
| 60 ], |
| 61 }], |
| 62 ], |
| 56 }, | 63 }, |
| 57 { | 64 { |
| 58 'target_name': 'test_support_aura', | 65 'target_name': 'test_support_aura', |
| 59 'type': 'static_library', | 66 'type': 'static_library', |
| 60 'dependencies': [ | 67 'dependencies': [ |
| 61 '../../skia/skia.gyp:skia', | 68 '../../skia/skia.gyp:skia', |
| 62 '../../testing/gtest.gyp:gtest', | 69 '../../testing/gtest.gyp:gtest', |
| 63 '../gfx/compositor/compositor.gyp:test_compositor', | 70 '../gfx/compositor/compositor.gyp:test_compositor', |
| 64 '../ui.gyp:ui', | 71 '../ui.gyp:ui', |
| 65 'aura', | 72 'aura', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 'conditions': [ | 148 'conditions': [ |
| 142 ['OS=="linux"', { | 149 ['OS=="linux"', { |
| 143 'dependencies': [ | 150 'dependencies': [ |
| 144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 151 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 145 ], | 152 ], |
| 146 }], | 153 }], |
| 147 ], | 154 ], |
| 148 }, | 155 }, |
| 149 ], | 156 ], |
| 150 } | 157 } |
| OLD | NEW |