| 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 'target_name': 'wm_public', | 11 'target_name': 'wm', |
| 12 'type': 'static_library', | |
| 13 'dependencies': [ | |
| 14 '../../skia/skia.gyp:skia', | |
| 15 '../aura/aura.gyp:aura', | |
| 16 '../gfx/gfx.gyp:gfx_geometry', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'public/window_types.h', | |
| 20 ], | |
| 21 }, | |
| 22 { | |
| 23 'target_name': 'wm_core', | |
| 24 'type': '<(component)', | 12 'type': '<(component)', |
| 25 'dependencies': [ | 13 'dependencies': [ |
| 26 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 27 '../../skia/skia.gyp:skia', | 15 '../../skia/skia.gyp:skia', |
| 28 '../aura/aura.gyp:aura', | 16 '../aura/aura.gyp:aura', |
| 29 '../compositor/compositor.gyp:compositor', | 17 '../compositor/compositor.gyp:compositor', |
| 30 '../events/events.gyp:events', | 18 '../events/events.gyp:events', |
| 31 '../events/events.gyp:events_base', | 19 '../events/events.gyp:events_base', |
| 32 '../gfx/gfx.gyp:gfx_geometry', | 20 '../gfx/gfx.gyp:gfx_geometry', |
| 33 '../gfx/gfx.gyp:gfx', | 21 '../gfx/gfx.gyp:gfx', |
| 34 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
| 35 '../base/ui_base.gyp:ui_base', | 23 '../base/ui_base.gyp:ui_base', |
| 36 ], | 24 ], |
| 37 'defines': [ | 25 'defines': [ |
| 38 'WM_CORE_IMPLEMENTATION', | 26 'WM_IMPLEMENTATION', |
| 39 ], | 27 ], |
| 40 'sources': [ | 28 'sources': [ |
| 41 'core/base_focus_rules.cc', | 29 'core/base_focus_rules.cc', |
| 42 'core/base_focus_rules.h', | 30 'core/base_focus_rules.h', |
| 43 'core/capture_controller.cc', | 31 'core/capture_controller.cc', |
| 44 'core/capture_controller.h', | 32 'core/capture_controller.h', |
| 45 'core/compound_event_filter.cc', | 33 'core/compound_event_filter.cc', |
| 46 'core/compound_event_filter.h', | 34 'core/compound_event_filter.h', |
| 47 'core/cursor_manager.cc', | 35 'core/cursor_manager.cc', |
| 48 'core/cursor_manager.h', | 36 'core/cursor_manager.h', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 76 'core/user_activity_detector.h', | 64 'core/user_activity_detector.h', |
| 77 'core/user_activity_observer.h', | 65 'core/user_activity_observer.h', |
| 78 'core/visibility_controller.cc', | 66 'core/visibility_controller.cc', |
| 79 'core/visibility_controller.h', | 67 'core/visibility_controller.h', |
| 80 'core/window_animations.cc', | 68 'core/window_animations.cc', |
| 81 'core/window_animations.h', | 69 'core/window_animations.h', |
| 82 'core/window_modality_controller.cc', | 70 'core/window_modality_controller.cc', |
| 83 'core/window_modality_controller.h', | 71 'core/window_modality_controller.h', |
| 84 'core/window_util.cc', | 72 'core/window_util.cc', |
| 85 'core/window_util.h', | 73 'core/window_util.h', |
| 86 'core/wm_core_export.h', | |
| 87 'core/wm_core_switches.cc', | 74 'core/wm_core_switches.cc', |
| 88 'core/wm_core_switches.h', | 75 'core/wm_core_switches.h', |
| 89 'core/wm_state.cc', | 76 'core/wm_state.cc', |
| 90 'core/wm_state.h', | 77 'core/wm_state.h', |
| 78 'public/window_types.h', |
| 79 'wm_export.h', |
| 91 ], | 80 ], |
| 92 }, | 81 }, |
| 93 { | 82 { |
| 94 'target_name': 'wm_test_support', | 83 'target_name': 'wm_test_support', |
| 95 'type': 'static_library', | 84 'type': 'static_library', |
| 96 'dependencies': [ | 85 'dependencies': [ |
| 97 '../../skia/skia.gyp:skia', | 86 '../../skia/skia.gyp:skia', |
| 98 '../aura/aura.gyp:aura', | 87 '../aura/aura.gyp:aura', |
| 99 '../events/events.gyp:events', | 88 '../events/events.gyp:events', |
| 100 '../events/events.gyp:events_base', | 89 '../events/events.gyp:events_base', |
| 101 ], | 90 ], |
| 102 'sources': [ | 91 'sources': [ |
| 103 'test/wm_test_helper.cc', | 92 'test/wm_test_helper.cc', |
| 104 'test/wm_test_helper.h', | 93 'test/wm_test_helper.h', |
| 105 ], | 94 ], |
| 106 }, | 95 }, |
| 107 { | 96 { |
| 108 'target_name': 'wm_core_unittests', | 97 'target_name': 'wm_unittests', |
| 109 'type': 'executable', | 98 'type': 'executable', |
| 110 'dependencies': [ | 99 'dependencies': [ |
| 111 '../../base/base.gyp:base', | 100 '../../base/base.gyp:base', |
| 112 '../../base/base.gyp:test_support_base', | 101 '../../base/base.gyp:test_support_base', |
| 113 '../../skia/skia.gyp:skia', | 102 '../../skia/skia.gyp:skia', |
| 114 '../../testing/gtest.gyp:gtest', | 103 '../../testing/gtest.gyp:gtest', |
| 115 '../aura/aura.gyp:aura', | 104 '../aura/aura.gyp:aura', |
| 116 '../aura/aura.gyp:aura_test_support', | 105 '../aura/aura.gyp:aura_test_support', |
| 117 '../compositor/compositor.gyp:compositor', | 106 '../compositor/compositor.gyp:compositor', |
| 118 '../events/events.gyp:events', | 107 '../events/events.gyp:events', |
| 119 '../events/events.gyp:events_base', | 108 '../events/events.gyp:events_base', |
| 120 '../gfx/gfx.gyp:gfx_geometry', | 109 '../gfx/gfx.gyp:gfx_geometry', |
| 121 '../gfx/gfx.gyp:gfx', | 110 '../gfx/gfx.gyp:gfx', |
| 122 '../base/ui_base.gyp:ui_base', | 111 '../base/ui_base.gyp:ui_base', |
| 123 'wm_core', | 112 'wm', |
| 124 'wm_test_support', | 113 'wm_test_support', |
| 125 ], | 114 ], |
| 126 'sources': [ | 115 'sources': [ |
| 127 'test/run_all_unittests.cc', | 116 'test/run_all_unittests.cc', |
| 128 'core/compound_event_filter_unittest.cc', | 117 'core/compound_event_filter_unittest.cc', |
| 129 'core/cursor_manager_unittest.cc', | 118 'core/cursor_manager_unittest.cc', |
| 130 'core/focus_controller_unittest.cc', | 119 'core/focus_controller_unittest.cc', |
| 131 'core/input_method_event_filter_unittest.cc', | 120 'core/input_method_event_filter_unittest.cc', |
| 132 'core/image_grid_unittest.cc', | 121 'core/image_grid_unittest.cc', |
| 133 'core/shadow_controller_unittest.cc', | 122 'core/shadow_controller_unittest.cc', |
| 134 'core/transient_window_manager_unittest.cc', | 123 'core/transient_window_manager_unittest.cc', |
| 135 'core/transient_window_stacking_client_unittest.cc', | 124 'core/transient_window_stacking_client_unittest.cc', |
| 136 'core/user_activity_detector_unittest.cc', | 125 'core/user_activity_detector_unittest.cc', |
| 137 'core/visibility_controller_unittest.cc', | 126 'core/visibility_controller_unittest.cc', |
| 138 'core/window_animations_unittest.cc', | 127 'core/window_animations_unittest.cc', |
| 139 'core/window_util_unittest.cc', | 128 'core/window_util_unittest.cc', |
| 140 ], | 129 ], |
| 141 }, | 130 }, |
| 142 ], | 131 ], |
| 143 } | 132 } |
| OLD | NEW |