| 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 'target_name': 'wm', | 12 'target_name': 'wm', |
| 12 'type': '<(component)', | 13 'type': '<(component)', |
| 13 'dependencies': [ | 14 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 15 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
| 16 '../aura/aura.gyp:aura', | 17 '../aura/aura.gyp:aura', |
| 17 '../compositor/compositor.gyp:compositor', | 18 '../compositor/compositor.gyp:compositor', |
| 18 '../events/events.gyp:events', | 19 '../events/events.gyp:events', |
| 19 '../events/events.gyp:events_base', | 20 '../events/events.gyp:events_base', |
| 20 '../gfx/gfx.gyp:gfx_geometry', | 21 '../gfx/gfx.gyp:gfx_geometry', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'core/window_util.h', | 87 'core/window_util.h', |
| 87 'core/wm_core_switches.cc', | 88 'core/wm_core_switches.cc', |
| 88 'core/wm_core_switches.h', | 89 'core/wm_core_switches.h', |
| 89 'core/wm_state.cc', | 90 'core/wm_state.cc', |
| 90 'core/wm_state.h', | 91 'core/wm_state.h', |
| 91 'public/window_types.h', | 92 'public/window_types.h', |
| 92 'wm_export.h', | 93 'wm_export.h', |
| 93 ], | 94 ], |
| 94 }, | 95 }, |
| 95 { | 96 { |
| 97 # GN version: //ui/wm:test_support |
| 96 'target_name': 'wm_test_support', | 98 'target_name': 'wm_test_support', |
| 97 'type': 'static_library', | 99 'type': 'static_library', |
| 98 'dependencies': [ | 100 'dependencies': [ |
| 99 '../../skia/skia.gyp:skia', | 101 '../../skia/skia.gyp:skia', |
| 100 '../aura/aura.gyp:aura', | 102 '../aura/aura.gyp:aura', |
| 101 '../base/ui_base.gyp:ui_base', | 103 '../base/ui_base.gyp:ui_base', |
| 102 '../events/events.gyp:events', | 104 '../events/events.gyp:events', |
| 103 '../events/events.gyp:events_base', | 105 '../events/events.gyp:events_base', |
| 104 ], | 106 ], |
| 105 'sources': [ | 107 'sources': [ |
| 106 'test/wm_test_helper.cc', | 108 'test/wm_test_helper.cc', |
| 107 'test/wm_test_helper.h', | 109 'test/wm_test_helper.h', |
| 108 ], | 110 ], |
| 109 }, | 111 }, |
| 110 { | 112 { |
| 113 # GN version: //ui/wm:wm_unittests |
| 111 'target_name': 'wm_unittests', | 114 'target_name': 'wm_unittests', |
| 112 'type': 'executable', | 115 'type': 'executable', |
| 113 'dependencies': [ | 116 'dependencies': [ |
| 114 '../../base/base.gyp:base', | 117 '../../base/base.gyp:base', |
| 115 '../../base/base.gyp:test_support_base', | 118 '../../base/base.gyp:test_support_base', |
| 116 '../../skia/skia.gyp:skia', | 119 '../../skia/skia.gyp:skia', |
| 117 '../../testing/gtest.gyp:gtest', | 120 '../../testing/gtest.gyp:gtest', |
| 118 '../aura/aura.gyp:aura', | 121 '../aura/aura.gyp:aura', |
| 119 '../aura/aura.gyp:aura_test_support', | 122 '../aura/aura.gyp:aura_test_support', |
| 120 '../base/ui_base.gyp:ui_base', | 123 '../base/ui_base.gyp:ui_base', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 138 'core/transient_window_manager_unittest.cc', | 141 'core/transient_window_manager_unittest.cc', |
| 139 'core/transient_window_stacking_client_unittest.cc', | 142 'core/transient_window_stacking_client_unittest.cc', |
| 140 'core/user_activity_detector_unittest.cc', | 143 'core/user_activity_detector_unittest.cc', |
| 141 'core/visibility_controller_unittest.cc', | 144 'core/visibility_controller_unittest.cc', |
| 142 'core/window_animations_unittest.cc', | 145 'core/window_animations_unittest.cc', |
| 143 'core/window_util_unittest.cc', | 146 'core/window_util_unittest.cc', |
| 144 ], | 147 ], |
| 145 }, | 148 }, |
| 146 ], | 149 ], |
| 147 } | 150 } |
| OLD | NEW |