| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'core/window_modality_controller.cc', | 88 'core/window_modality_controller.cc', |
| 89 'core/window_modality_controller.h', | 89 'core/window_modality_controller.h', |
| 90 'core/window_util.cc', | 90 'core/window_util.cc', |
| 91 'core/window_util.h', | 91 'core/window_util.h', |
| 92 'core/wm_core_switches.cc', | 92 'core/wm_core_switches.cc', |
| 93 'core/wm_core_switches.h', | 93 'core/wm_core_switches.h', |
| 94 'core/wm_state.cc', | 94 'core/wm_state.cc', |
| 95 'core/wm_state.h', | 95 'core/wm_state.h', |
| 96 'wm_export.h', | 96 'wm_export.h', |
| 97 ], | 97 ], |
| 98 'conditions': [ |
| 99 ['use_x11==1', { |
| 100 'dependencies': [ |
| 101 '../../build/linux/system.gyp:x11', |
| 102 ], |
| 103 }], |
| 104 ], |
| 98 }, | 105 }, |
| 99 { | 106 { |
| 100 # GN version: //ui/wm:test_support | 107 # GN version: //ui/wm:test_support |
| 101 'target_name': 'wm_test_support', | 108 'target_name': 'wm_test_support', |
| 102 'type': 'static_library', | 109 'type': 'static_library', |
| 103 'dependencies': [ | 110 'dependencies': [ |
| 104 '../../skia/skia.gyp:skia', | 111 '../../skia/skia.gyp:skia', |
| 105 '../aura/aura.gyp:aura', | 112 '../aura/aura.gyp:aura', |
| 106 '../events/events.gyp:events', | 113 '../events/events.gyp:events', |
| 107 '../events/events.gyp:events_base', | 114 '../events/events.gyp:events_base', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 'core/shadow_unittest.cc', | 152 'core/shadow_unittest.cc', |
| 146 'core/transient_window_manager_unittest.cc', | 153 'core/transient_window_manager_unittest.cc', |
| 147 'core/transient_window_stacking_client_unittest.cc', | 154 'core/transient_window_stacking_client_unittest.cc', |
| 148 'core/visibility_controller_unittest.cc', | 155 'core/visibility_controller_unittest.cc', |
| 149 'core/window_animations_unittest.cc', | 156 'core/window_animations_unittest.cc', |
| 150 'core/window_util_unittest.cc', | 157 'core/window_util_unittest.cc', |
| 151 ], | 158 ], |
| 152 }, | 159 }, |
| 153 ], | 160 ], |
| 154 } | 161 } |
| OLD | NEW |