| 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 { |
| 11 # GN version: //ui/wm | 11 # GN version: //ui/wm |
| 12 'target_name': 'wm', | 12 'target_name': 'wm', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
| 17 '../aura/aura.gyp:aura', | 17 '../aura/aura.gyp:aura', |
| 18 '../compositor/compositor.gyp:compositor', | 18 '../compositor/compositor.gyp:compositor', |
| 19 '../events/devices/events_devices.gyp:events_devices', | 19 '../events/devices/events_devices.gyp:events_devices', |
| 20 '../events/events.gyp:events', | 20 '../events/events.gyp:events', |
| 21 '../events/events.gyp:events_base', | 21 '../events/events.gyp:events_base', |
| 22 '../events/platform/events_platform.gyp:events_platform', | 22 '../events/platform/events_platform.gyp:events_platform', |
| 23 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
| 24 '../gfx/gfx.gyp:gfx', | 24 '../gfx/gfx.gyp:gfx', |
| 25 '../resources/ui_resources.gyp:ui_resources', | 25 '../resources/ui_resources.gyp:ui_resources', |
| 26 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
| 26 '../base/ui_base.gyp:ui_base', | 27 '../base/ui_base.gyp:ui_base', |
| 27 ], | 28 ], |
| 28 'defines': [ | 29 'defines': [ |
| 29 'WM_IMPLEMENTATION', | 30 'WM_IMPLEMENTATION', |
| 30 ], | 31 ], |
| 31 'sources': [ | 32 'sources': [ |
| 32 # Note: sources list duplicated in GN build. | 33 # Note: sources list duplicated in GN build. |
| 33 'core/accelerator_delegate.h', | 34 'core/accelerator_delegate.h', |
| 34 'core/accelerator_filter.cc', | 35 'core/accelerator_filter.cc', |
| 35 'core/accelerator_filter.h', | 36 'core/accelerator_filter.h', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 # GN version: //ui/wm:wm_unittests | 123 # GN version: //ui/wm:wm_unittests |
| 123 'target_name': 'wm_unittests', | 124 'target_name': 'wm_unittests', |
| 124 'type': 'executable', | 125 'type': 'executable', |
| 125 'dependencies': [ | 126 'dependencies': [ |
| 126 '../../base/base.gyp:base', | 127 '../../base/base.gyp:base', |
| 127 '../../base/base.gyp:test_support_base', | 128 '../../base/base.gyp:test_support_base', |
| 128 '../../skia/skia.gyp:skia', | 129 '../../skia/skia.gyp:skia', |
| 129 '../../testing/gtest.gyp:gtest', | 130 '../../testing/gtest.gyp:gtest', |
| 130 '../aura/aura.gyp:aura', | 131 '../aura/aura.gyp:aura', |
| 131 '../aura/aura.gyp:aura_test_support', | 132 '../aura/aura.gyp:aura_test_support', |
| 133 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
| 132 '../base/ui_base.gyp:ui_base', | 134 '../base/ui_base.gyp:ui_base', |
| 133 '../compositor/compositor.gyp:compositor', | 135 '../compositor/compositor.gyp:compositor', |
| 134 '../events/events.gyp:events', | 136 '../events/events.gyp:events', |
| 135 '../events/events.gyp:events_base', | 137 '../events/events.gyp:events_base', |
| 136 '../events/platform/events_platform.gyp:events_platform', | 138 '../events/platform/events_platform.gyp:events_platform', |
| 137 '../gfx/gfx.gyp:gfx', | 139 '../gfx/gfx.gyp:gfx', |
| 138 '../gfx/gfx.gyp:gfx_geometry', | 140 '../gfx/gfx.gyp:gfx_geometry', |
| 139 'wm', | 141 'wm', |
| 140 'wm_test_support', | 142 'wm_test_support', |
| 141 ], | 143 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 152 'core/shadow_unittest.cc', | 154 'core/shadow_unittest.cc', |
| 153 'core/transient_window_manager_unittest.cc', | 155 'core/transient_window_manager_unittest.cc', |
| 154 'core/transient_window_stacking_client_unittest.cc', | 156 'core/transient_window_stacking_client_unittest.cc', |
| 155 'core/visibility_controller_unittest.cc', | 157 'core/visibility_controller_unittest.cc', |
| 156 'core/window_animations_unittest.cc', | 158 'core/window_animations_unittest.cc', |
| 157 'core/window_util_unittest.cc', | 159 'core/window_util_unittest.cc', |
| 158 ], | 160 ], |
| 159 }, | 161 }, |
| 160 ], | 162 ], |
| 161 } | 163 } |
| OLD | NEW |