Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ash/BUILD.gn

Issue 2474913004: Tablet-like power button behavior on Convertible/Tablet ChromeOS devices (Closed)
Patch Set: based on Daniel's comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/wm/lock_state_controller.h » ('j') | ash/wm/power_button_controller.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 "wm/immersive_fullscreen_controller_unittest.cc", 1324 "wm/immersive_fullscreen_controller_unittest.cc",
1325 "wm/lock_layout_manager_unittest.cc", 1325 "wm/lock_layout_manager_unittest.cc",
1326 "wm/lock_state_controller_unittest.cc", 1326 "wm/lock_state_controller_unittest.cc",
1327 "wm/maximize_mode/accelerometer_test_data_literals.cc", 1327 "wm/maximize_mode/accelerometer_test_data_literals.cc",
1328 "wm/maximize_mode/maximize_mode_controller_unittest.cc", 1328 "wm/maximize_mode/maximize_mode_controller_unittest.cc",
1329 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", 1329 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc",
1330 "wm/overlay_event_filter_unittest.cc", 1330 "wm/overlay_event_filter_unittest.cc",
1331 "wm/overview/window_selector_unittest.cc", 1331 "wm/overview/window_selector_unittest.cc",
1332 "wm/panels/panel_layout_manager_unittest.cc", 1332 "wm/panels/panel_layout_manager_unittest.cc",
1333 "wm/panels/panel_window_resizer_unittest.cc", 1333 "wm/panels/panel_window_resizer_unittest.cc",
1334 "wm/power_button_controller_unittest.cc",
1334 "wm/resize_shadow_and_cursor_unittest.cc", 1335 "wm/resize_shadow_and_cursor_unittest.cc",
1335 "wm/root_window_layout_manager_unittest.cc", 1336 "wm/root_window_layout_manager_unittest.cc",
1336 "wm/screen_dimmer_unittest.cc", 1337 "wm/screen_dimmer_unittest.cc",
1337 "wm/screen_pinning_controller_unittest.cc", 1338 "wm/screen_pinning_controller_unittest.cc",
1338 "wm/session_state_animator_impl_unittest.cc", 1339 "wm/session_state_animator_impl_unittest.cc",
1339 "wm/stacking_controller_unittest.cc", 1340 "wm/stacking_controller_unittest.cc",
1340 "wm/system_gesture_event_filter_unittest.cc", 1341 "wm/system_gesture_event_filter_unittest.cc",
1341 "wm/system_modal_container_layout_manager_unittest.cc", 1342 "wm/system_modal_container_layout_manager_unittest.cc",
1342 "wm/toplevel_window_event_handler_unittest.cc", 1343 "wm/toplevel_window_event_handler_unittest.cc",
1343 "wm/video_detector_unittest.cc", 1344 "wm/video_detector_unittest.cc",
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 "sticky_keys/sticky_keys_overlay_unittest.cc", 1453 "sticky_keys/sticky_keys_overlay_unittest.cc",
1453 "sticky_keys/sticky_keys_unittest.cc", 1454 "sticky_keys/sticky_keys_unittest.cc",
1454 "touch/touchscreen_util_unittest.cc", 1455 "touch/touchscreen_util_unittest.cc",
1455 "virtual_keyboard_controller_unittest.cc", 1456 "virtual_keyboard_controller_unittest.cc",
1456 1457
1457 # All tests for multiple displays: not supported on Windows Ash. 1458 # All tests for multiple displays: not supported on Windows Ash.
1458 "wm/drag_window_resizer_unittest.cc", 1459 "wm/drag_window_resizer_unittest.cc",
1459 1460
1460 # Talks to ChromeOS system services. 1461 # Talks to ChromeOS system services.
1461 "wm/lock_state_controller_unittest.cc", 1462 "wm/lock_state_controller_unittest.cc",
1463 "wm/power_button_controller_unittest.cc",
1462 1464
1463 # Maximize mode is only available on Chrome OS. 1465 # Maximize mode is only available on Chrome OS.
1464 "wm/maximize_mode/maximize_mode_controller_unittest.cc", 1466 "wm/maximize_mode/maximize_mode_controller_unittest.cc",
1465 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", 1467 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc",
1466 "wm/workspace/workspace_window_resizer_unittest.cc", 1468 "wm/workspace/workspace_window_resizer_unittest.cc",
1467 ] 1469 ]
1468 } 1470 }
1469 1471
1470 if (!use_x11 || !is_chromeos) { 1472 if (!use_x11 || !is_chromeos) {
1471 sources -= [ "touch/touch_transformer_controller_unittest.cc" ] 1473 sources -= [ "touch/touch_transformer_controller_unittest.cc" ]
(...skipping 28 matching lines...) Expand all
1500 if (is_win) { 1502 if (is_win) {
1501 configs -= [ "//build/config/win:console" ] 1503 configs -= [ "//build/config/win:console" ]
1502 configs += [ "//build/config/win:windowed" ] 1504 configs += [ "//build/config/win:windowed" ]
1503 deps += [ "//sandbox" ] 1505 deps += [ "//sandbox" ]
1504 } 1506 }
1505 1507
1506 if (is_chromeos) { 1508 if (is_chromeos) {
1507 deps += [ "//device/bluetooth" ] 1509 deps += [ "//device/bluetooth" ]
1508 } 1510 }
1509 } 1511 }
OLDNEW
« no previous file with comments | « no previous file | ash/wm/lock_state_controller.h » ('j') | ash/wm/power_button_controller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698