| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'core/window_animations.h', | 78 'core/window_animations.h', |
| 79 'core/window_modality_controller.cc', | 79 'core/window_modality_controller.cc', |
| 80 'core/window_modality_controller.h', | 80 'core/window_modality_controller.h', |
| 81 'core/window_util.cc', | 81 'core/window_util.cc', |
| 82 'core/window_util.h', | 82 'core/window_util.h', |
| 83 'core/wm_core_export.h', | 83 'core/wm_core_export.h', |
| 84 'core/wm_core_switches.cc', | 84 'core/wm_core_switches.cc', |
| 85 'core/wm_core_switches.h', | 85 'core/wm_core_switches.h', |
| 86 'core/wm_state.cc', | 86 'core/wm_state.cc', |
| 87 'core/wm_state.h', | 87 'core/wm_state.h', |
| 88 'public/text_edit_command_x11.cc', |
| 89 'public/text_edit_command_x11.h', |
| 90 'public/text_edit_key_bindings_delegate_x11.cc', |
| 91 'public/text_edit_key_bindings_delegate_x11.h', |
| 92 ], |
| 93 'conditions': [ |
| 94 ['chromeos==1', { |
| 95 'sources!': [ |
| 96 'public/text_edit_command_x11.cc', |
| 97 'public/text_edit_command_x11.h', |
| 98 'public/text_edit_key_bindings_delegate_x11.cc', |
| 99 'public/text_edit_key_bindings_delegate_x11.h', |
| 100 ], |
| 101 }], |
| 88 ], | 102 ], |
| 89 }, | 103 }, |
| 90 { | 104 { |
| 91 'target_name': 'wm_test_support', | 105 'target_name': 'wm_test_support', |
| 92 'type': 'static_library', | 106 'type': 'static_library', |
| 93 'dependencies': [ | 107 'dependencies': [ |
| 94 '../../skia/skia.gyp:skia', | 108 '../../skia/skia.gyp:skia', |
| 95 '../aura/aura.gyp:aura', | 109 '../aura/aura.gyp:aura', |
| 96 ], | 110 ], |
| 97 'sources': [ | 111 'sources': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 128 'core/shadow_controller_unittest.cc', | 142 'core/shadow_controller_unittest.cc', |
| 129 'core/transient_window_manager_unittest.cc', | 143 'core/transient_window_manager_unittest.cc', |
| 130 'core/transient_window_stacking_client_unittest.cc', | 144 'core/transient_window_stacking_client_unittest.cc', |
| 131 'core/visibility_controller_unittest.cc', | 145 'core/visibility_controller_unittest.cc', |
| 132 'core/window_animations_unittest.cc', | 146 'core/window_animations_unittest.cc', |
| 133 'core/window_util_unittest.cc', | 147 'core/window_util_unittest.cc', |
| 134 ], | 148 ], |
| 135 }, | 149 }, |
| 136 ], | 150 ], |
| 137 } | 151 } |
| OLD | NEW |