| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ash_wm_common', | 8 'target_name': 'ash_wm_common', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 '../../../ui/wm/wm.gyp:wm', | 23 '../../../ui/wm/wm.gyp:wm', |
| 24 ], | 24 ], |
| 25 'defines': [ | 25 'defines': [ |
| 26 'ASH_WM_COMMON_IMPLEMENTATION', | 26 'ASH_WM_COMMON_IMPLEMENTATION', |
| 27 ], | 27 ], |
| 28 'sources': [ | 28 'sources': [ |
| 29 'always_on_top_controller.cc', | 29 'always_on_top_controller.cc', |
| 30 'always_on_top_controller.h', | 30 'always_on_top_controller.h', |
| 31 'background_animator.cc', | 31 'background_animator.cc', |
| 32 'background_animator.h', | 32 'background_animator.h', |
| 33 'container_finder.cc', |
| 34 'container_finder.h', |
| 33 'default_state.cc', | 35 'default_state.cc', |
| 34 'default_state.h', | 36 'default_state.h', |
| 35 'default_window_resizer.cc', | 37 'default_window_resizer.cc', |
| 36 'default_window_resizer.h', | 38 'default_window_resizer.h', |
| 37 'dock/docked_window_layout_manager.cc', | 39 'dock/docked_window_layout_manager.cc', |
| 38 'dock/docked_window_layout_manager.h', | 40 'dock/docked_window_layout_manager.h', |
| 39 'dock/docked_window_layout_manager_observer.h', | 41 'dock/docked_window_layout_manager_observer.h', |
| 40 'dock/docked_window_resizer.cc', | 42 'dock/docked_window_resizer.cc', |
| 41 'dock/docked_window_resizer.h', | 43 'dock/docked_window_resizer.h', |
| 42 'drag_details.cc', | 44 'drag_details.cc', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ], | 117 ], |
| 116 'conditions': [ | 118 'conditions': [ |
| 117 ['OS=="win"', { | 119 ['OS=="win"', { |
| 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 120 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 119 'msvs_disabled_warnings': [ 4267, ], | 121 'msvs_disabled_warnings': [ 4267, ], |
| 120 }], | 122 }], |
| 121 ], | 123 ], |
| 122 }, | 124 }, |
| 123 ], | 125 ], |
| 124 } | 126 } |
| OLD | NEW |