OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("ash.gyp") ], | 9 [ rebase_path("ash.gyp") ], |
10 "scope", | 10 "scope", |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 ] | 272 ] |
273 | 273 |
274 if (!is_chromeos) { | 274 if (!is_chromeos) { |
275 sources -= [ | 275 sources -= [ |
276 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 | 276 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 |
277 "focus_cycler_unittest.cc", | 277 "focus_cycler_unittest.cc", |
278 | 278 |
279 # All tests for multiple displays: not supported on Windows Ash. | 279 # All tests for multiple displays: not supported on Windows Ash. |
280 "wm/drag_window_resizer_unittest.cc", | 280 "wm/drag_window_resizer_unittest.cc", |
281 | 281 |
| 282 # Accelerometer is only available on Chrome OS. |
| 283 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 284 |
282 # Can't resize on Windows Ash. http://crbug.com/165962 | 285 # Can't resize on Windows Ash. http://crbug.com/165962 |
283 "magnifier/magnification_controller_unittest.cc", | 286 "magnifier/magnification_controller_unittest.cc", |
284 "wm/workspace/workspace_window_resizer_unittest.cc", | 287 "wm/workspace/workspace_window_resizer_unittest.cc", |
285 "sticky_keys/sticky_keys_overlay_unittest.cc", | 288 "sticky_keys/sticky_keys_overlay_unittest.cc", |
286 "system/tray/media_security/multi_profile_media_tray_item_unittest.cc", | 289 "system/tray/media_security/multi_profile_media_tray_item_unittest.cc", |
287 "autoclick/autoclick_unittest.cc", | 290 "autoclick/autoclick_unittest.cc", |
288 "virtual_keyboard_controller_unittest.cc", | 291 "virtual_keyboard_controller_unittest.cc", |
289 ] | 292 ] |
290 sources += [ | 293 sources += [ |
291 #'<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', TODO
(GYP) | 294 #'<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', TODO
(GYP) |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 "//content/test:test_support", | 370 "//content/test:test_support", |
368 "//skia", | 371 "//skia", |
369 "//testing/gtest", | 372 "//testing/gtest", |
370 "//ui/accessibility", | 373 "//ui/accessibility", |
371 ] | 374 ] |
372 | 375 |
373 if (is_chromeos) { | 376 if (is_chromeos) { |
374 deps += [ "//ui/display" ] | 377 deps += [ "//ui/display" ] |
375 } | 378 } |
376 } | 379 } |
OLD | NEW |