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 { |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 # GN version: //ui/wm:test_support | 101 # GN version: //ui/wm:test_support |
102 'target_name': 'wm_test_support', | 102 'target_name': 'wm_test_support', |
103 'type': 'static_library', | 103 'type': 'static_library', |
104 'dependencies': [ | 104 'dependencies': [ |
105 '../../skia/skia.gyp:skia', | 105 '../../skia/skia.gyp:skia', |
106 '../aura/aura.gyp:aura', | 106 '../aura/aura.gyp:aura', |
107 '../events/events.gyp:events', | 107 '../events/events.gyp:events', |
108 '../events/events.gyp:events_base', | 108 '../events/events.gyp:events_base', |
109 ], | 109 ], |
110 'sources': [ | 110 'sources': [ |
| 111 'test/testing_cursor_client_observer.cc', |
| 112 'test/testing_cursor_client_observer.h', |
111 'test/wm_test_helper.cc', | 113 'test/wm_test_helper.cc', |
112 'test/wm_test_helper.h', | 114 'test/wm_test_helper.h', |
113 ], | 115 ], |
114 }, | 116 }, |
115 { | 117 { |
116 # GN version: //ui/wm:wm_unittests | 118 # GN version: //ui/wm:wm_unittests |
117 'target_name': 'wm_unittests', | 119 'target_name': 'wm_unittests', |
118 'type': 'executable', | 120 'type': 'executable', |
119 'dependencies': [ | 121 'dependencies': [ |
120 '../../base/base.gyp:base', | 122 '../../base/base.gyp:base', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 '../../build/isolate.gypi', | 166 '../../build/isolate.gypi', |
165 ], | 167 ], |
166 'sources': [ | 168 'sources': [ |
167 'wm_unittests.isolate', | 169 'wm_unittests.isolate', |
168 ], | 170 ], |
169 }, | 171 }, |
170 ], | 172 ], |
171 }], | 173 }], |
172 ], | 174 ], |
173 } | 175 } |
OLD | NEW |