| 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/keyboard/keyboard.gyp:keyboard', | 23 '../../../ui/keyboard/keyboard.gyp:keyboard', |
| 24 '../../../ui/views/views.gyp:views', | 24 '../../../ui/views/views.gyp:views', |
| 25 '../../../ui/wm/wm.gyp:wm', | 25 '../../../ui/wm/wm.gyp:wm', |
| 26 ], | 26 ], |
| 27 'defines': [ | 27 'defines': [ |
| 28 'ASH_WM_COMMON_IMPLEMENTATION', | 28 'ASH_WM_COMMON_IMPLEMENTATION', |
| 29 ], | 29 ], |
| 30 'sources': [ | 30 'sources': [ |
| 31 'always_on_top_controller.cc', | 31 'always_on_top_controller.cc', |
| 32 'always_on_top_controller.h', | 32 'always_on_top_controller.h', |
| 33 'ash_wm_common_export.h', |
| 33 'background_animator.cc', | 34 'background_animator.cc', |
| 34 'background_animator.h', | 35 'background_animator.h', |
| 35 'container_finder.cc', | 36 'container_finder.cc', |
| 36 'container_finder.h', | 37 'container_finder.h', |
| 37 'default_state.cc', | 38 'default_state.cc', |
| 38 'default_state.h', | 39 'default_state.h', |
| 39 'default_window_resizer.cc', | 40 'default_window_resizer.cc', |
| 40 'default_window_resizer.h', | 41 'default_window_resizer.h', |
| 41 'dock/docked_window_layout_manager.cc', | 42 'dock/docked_window_layout_manager.cc', |
| 42 'dock/docked_window_layout_manager.h', | 43 'dock/docked_window_layout_manager.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ], | 122 ], |
| 122 'conditions': [ | 123 'conditions': [ |
| 123 ['OS=="win"', { | 124 ['OS=="win"', { |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 'msvs_disabled_warnings': [ 4267, ], | 126 'msvs_disabled_warnings': [ 4267, ], |
| 126 }], | 127 }], |
| 127 ], | 128 ], |
| 128 }, | 129 }, |
| 129 ], | 130 ], |
| 130 } | 131 } |
| OLD | NEW |