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

Side by Side Diff: ash/ash.gyp

Issue 326813004: Added quick lock mechanism while in Touchview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added ASH_EXPORT to SessionStateAnimator Created 6 years, 3 months 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/ash_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 # These files lists are shared with the GN build. 9 # These files lists are shared with the GN build.
10 'ash_sources': [ 10 'ash_sources': [
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 'wm/resize_shadow.cc', 588 'wm/resize_shadow.cc',
589 'wm/resize_shadow.h', 589 'wm/resize_shadow.h',
590 'wm/resize_shadow_controller.cc', 590 'wm/resize_shadow_controller.cc',
591 'wm/resize_shadow_controller.h', 591 'wm/resize_shadow_controller.h',
592 'wm/root_window_layout_manager.cc', 592 'wm/root_window_layout_manager.cc',
593 'wm/root_window_layout_manager.h', 593 'wm/root_window_layout_manager.h',
594 'wm/screen_dimmer.cc', 594 'wm/screen_dimmer.cc',
595 'wm/screen_dimmer.h', 595 'wm/screen_dimmer.h',
596 'wm/session_state_animator.cc', 596 'wm/session_state_animator.cc',
597 'wm/session_state_animator.h', 597 'wm/session_state_animator.h',
598 'wm/session_state_animator_impl.cc',
599 'wm/session_state_animator_impl.h',
598 'wm/stacking_controller.cc', 600 'wm/stacking_controller.cc',
599 'wm/stacking_controller.h', 601 'wm/stacking_controller.h',
600 'wm/status_area_layout_manager.cc', 602 'wm/status_area_layout_manager.cc',
601 'wm/status_area_layout_manager.h', 603 'wm/status_area_layout_manager.h',
602 'wm/system_background_controller.cc', 604 'wm/system_background_controller.cc',
603 'wm/system_background_controller.h', 605 'wm/system_background_controller.h',
604 'wm/system_gesture_event_filter.cc', 606 'wm/system_gesture_event_filter.cc',
605 'wm/system_gesture_event_filter.h', 607 'wm/system_gesture_event_filter.h',
606 'wm/system_modal_container_event_filter.cc', 608 'wm/system_modal_container_event_filter.cc',
607 'wm/system_modal_container_event_filter.h', 609 'wm/system_modal_container_event_filter.h',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'test/status_area_widget_test_helper.cc', 690 'test/status_area_widget_test_helper.cc',
689 'test/status_area_widget_test_helper.h', 691 'test/status_area_widget_test_helper.h',
690 'test/test_activation_delegate.cc', 692 'test/test_activation_delegate.cc',
691 'test/test_activation_delegate.h', 693 'test/test_activation_delegate.h',
692 'test/test_lock_state_controller_delegate.cc', 694 'test/test_lock_state_controller_delegate.cc',
693 'test/test_lock_state_controller_delegate.h', 695 'test/test_lock_state_controller_delegate.h',
694 'test/test_overlay_delegate.cc', 696 'test/test_overlay_delegate.cc',
695 'test/test_overlay_delegate.h', 697 'test/test_overlay_delegate.h',
696 'test/test_screenshot_delegate.cc', 698 'test/test_screenshot_delegate.cc',
697 'test/test_screenshot_delegate.h', 699 'test/test_screenshot_delegate.h',
700 'test/test_session_state_animator.cc',
701 'test/test_session_state_animator.h',
698 'test/test_session_state_delegate.cc', 702 'test/test_session_state_delegate.cc',
699 'test/test_session_state_delegate.h', 703 'test/test_session_state_delegate.h',
700 'test/test_shelf_delegate.cc', 704 'test/test_shelf_delegate.cc',
701 'test/test_shelf_delegate.h', 705 'test/test_shelf_delegate.h',
702 'test/test_shelf_item_delegate.cc', 706 'test/test_shelf_item_delegate.cc',
703 'test/test_shelf_item_delegate.h', 707 'test/test_shelf_item_delegate.h',
704 'test/test_shell_delegate.cc', 708 'test/test_shell_delegate.cc',
705 'test/test_shell_delegate.h', 709 'test/test_shell_delegate.h',
706 'test/test_suite.cc', 710 'test/test_suite.cc',
707 'test/test_suite.h', 711 'test/test_suite.h',
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 'conditions': [ 1264 'conditions': [
1261 ['chromeos==1', { 1265 ['chromeos==1', {
1262 'dependencies': [ 1266 'dependencies': [
1263 '../ui/display/display.gyp:display', 1267 '../ui/display/display.gyp:display',
1264 ], 1268 ],
1265 }], 1269 }],
1266 ], 1270 ],
1267 }, 1271 },
1268 ], 1272 ],
1269 } 1273 }
OLDNEW
« no previous file with comments | « no previous file | ash/ash_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698