OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 'aura', | 153 'aura', |
154 ], | 154 ], |
155 'include_dirs': [ | 155 'include_dirs': [ |
156 '..', | 156 '..', |
157 ], | 157 ], |
158 'sources': [ | 158 'sources': [ |
159 'test/aura_test_base.cc', | 159 'test/aura_test_base.cc', |
160 'test/aura_test_base.h', | 160 'test/aura_test_base.h', |
161 'test/aura_test_helper.cc', | 161 'test/aura_test_helper.cc', |
162 'test/aura_test_helper.h', | 162 'test/aura_test_helper.h', |
| 163 'test/aura_test_utils.cc', |
| 164 'test/aura_test_utils.h', |
163 'test/env_test_helper.h', | 165 'test/env_test_helper.h', |
164 'test/event_generator.cc', | 166 'test/event_generator.cc', |
165 'test/event_generator.h', | 167 'test/event_generator.h', |
166 'test/test_cursor_client.cc', | 168 'test/test_cursor_client.cc', |
167 'test/test_cursor_client.h', | 169 'test/test_cursor_client.h', |
168 'test/test_focus_client.cc', | 170 'test/test_focus_client.cc', |
169 'test/test_focus_client.h', | 171 'test/test_focus_client.h', |
170 'test/test_screen.cc', | 172 'test/test_screen.cc', |
171 'test/test_screen.h', | 173 'test/test_screen.h', |
172 'test/test_window_tree_client.cc', | 174 'test/test_window_tree_client.cc', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | 291 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { |
290 'dependencies': [ | 292 'dependencies': [ |
291 # See http://crbug.com/162998#c4 for why this is needed. | 293 # See http://crbug.com/162998#c4 for why this is needed. |
292 '../../base/allocator/allocator.gyp:allocator', | 294 '../../base/allocator/allocator.gyp:allocator', |
293 ], | 295 ], |
294 }], | 296 }], |
295 ], | 297 ], |
296 }, | 298 }, |
297 ], | 299 ], |
298 } | 300 } |
OLD | NEW |