| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'core/window_modality_controller.cc', | 91 'core/window_modality_controller.cc', |
| 92 'core/window_modality_controller.h', | 92 'core/window_modality_controller.h', |
| 93 'core/window_util.cc', | 93 'core/window_util.cc', |
| 94 'core/window_util.h', | 94 'core/window_util.h', |
| 95 'core/wm_core_switches.cc', | 95 'core/wm_core_switches.cc', |
| 96 'core/wm_core_switches.h', | 96 'core/wm_core_switches.h', |
| 97 'core/wm_state.cc', | 97 'core/wm_state.cc', |
| 98 'core/wm_state.h', | 98 'core/wm_state.h', |
| 99 'wm_export.h', | 99 'wm_export.h', |
| 100 ], | 100 ], |
| 101 'conditions': [ |
| 102 ['use_x11==1', { |
| 103 'link_settings': { 'libraries': [ '-lX11' ] }, |
| 104 }], |
| 105 ], |
| 101 }, | 106 }, |
| 102 { | 107 { |
| 103 # GN version: //ui/wm:test_support | 108 # GN version: //ui/wm:test_support |
| 104 'target_name': 'wm_test_support', | 109 'target_name': 'wm_test_support', |
| 105 'type': 'static_library', | 110 'type': 'static_library', |
| 106 'dependencies': [ | 111 'dependencies': [ |
| 107 '../../skia/skia.gyp:skia', | 112 '../../skia/skia.gyp:skia', |
| 108 '../aura/aura.gyp:aura', | 113 '../aura/aura.gyp:aura', |
| 109 '../events/events.gyp:events', | 114 '../events/events.gyp:events', |
| 110 '../events/events.gyp:events_base', | 115 '../events/events.gyp:events_base', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'core/transient_window_manager_unittest.cc', | 154 'core/transient_window_manager_unittest.cc', |
| 150 'core/transient_window_stacking_client_unittest.cc', | 155 'core/transient_window_stacking_client_unittest.cc', |
| 151 'core/user_activity_detector_unittest.cc', | 156 'core/user_activity_detector_unittest.cc', |
| 152 'core/visibility_controller_unittest.cc', | 157 'core/visibility_controller_unittest.cc', |
| 153 'core/window_animations_unittest.cc', | 158 'core/window_animations_unittest.cc', |
| 154 'core/window_util_unittest.cc', | 159 'core/window_util_unittest.cc', |
| 155 ], | 160 ], |
| 156 }, | 161 }, |
| 157 ], | 162 ], |
| 158 } | 163 } |
| OLD | NEW |