| 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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 "common/system/ime/tray_ime_chromeos_unittest.cc", | 1422 "common/system/ime/tray_ime_chromeos_unittest.cc", |
| 1423 "common/system/tray/system_tray_unittest.cc", | 1423 "common/system/tray/system_tray_unittest.cc", |
| 1424 "common/system/tray/tray_details_view_unittest.cc", | 1424 "common/system/tray/tray_details_view_unittest.cc", |
| 1425 "common/system/update/tray_update_unittest.cc", | 1425 "common/system/update/tray_update_unittest.cc", |
| 1426 "common/system/user/tray_user_unittest.cc", | 1426 "common/system/user/tray_user_unittest.cc", |
| 1427 "common/wallpaper/wallpaper_controller_unittest.cc", | 1427 "common/wallpaper/wallpaper_controller_unittest.cc", |
| 1428 "common/wm/container_finder_unittest.cc", | 1428 "common/wm/container_finder_unittest.cc", |
| 1429 "common/wm/overview/cleanup_animation_observer_unittest.cc", | 1429 "common/wm/overview/cleanup_animation_observer_unittest.cc", |
| 1430 "common/wm/workspace/workspace_event_handler_test_helper.cc", | 1430 "common/wm/workspace/workspace_event_handler_test_helper.cc", |
| 1431 "common/wm/workspace/workspace_event_handler_test_helper.h", | 1431 "common/wm/workspace/workspace_event_handler_test_helper.h", |
| 1432 "common/wm_window_unittest.cc", |
| 1432 "common/wm_window_user_data_unittest.cc", | 1433 "common/wm_window_user_data_unittest.cc", |
| 1433 "dip_unittest.cc", | 1434 "dip_unittest.cc", |
| 1434 "display/cursor_window_controller_unittest.cc", | 1435 "display/cursor_window_controller_unittest.cc", |
| 1435 "display/display_change_observer_chromeos_unittest.cc", | 1436 "display/display_change_observer_chromeos_unittest.cc", |
| 1436 "display/display_color_manager_chromeos_unittest.cc", | 1437 "display/display_color_manager_chromeos_unittest.cc", |
| 1437 "display/display_error_observer_chromeos_unittest.cc", | 1438 "display/display_error_observer_chromeos_unittest.cc", |
| 1438 "display/display_manager_unittest.cc", | 1439 "display/display_manager_unittest.cc", |
| 1439 "display/display_util_unittest.cc", | 1440 "display/display_util_unittest.cc", |
| 1440 "display/extended_mouse_warp_controller_unittest.cc", | 1441 "display/extended_mouse_warp_controller_unittest.cc", |
| 1441 "display/json_converter_unittest.cc", | 1442 "display/json_converter_unittest.cc", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 if (is_win) { | 1672 if (is_win) { |
| 1672 configs -= [ "//build/config/win:console" ] | 1673 configs -= [ "//build/config/win:console" ] |
| 1673 configs += [ "//build/config/win:windowed" ] | 1674 configs += [ "//build/config/win:windowed" ] |
| 1674 deps += [ "//sandbox" ] | 1675 deps += [ "//sandbox" ] |
| 1675 } | 1676 } |
| 1676 | 1677 |
| 1677 if (is_chromeos) { | 1678 if (is_chromeos) { |
| 1678 deps += [ "//device/bluetooth" ] | 1679 deps += [ "//device/bluetooth" ] |
| 1679 } | 1680 } |
| 1680 } | 1681 } |
| OLD | NEW |