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

Side by Side Diff: ash/ash.gyp

Issue 21297003: Add ability to set resolution on external display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
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 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 'display/display_error_observer.h', 91 'display/display_error_observer.h',
92 'display/display_info.h', 92 'display/display_info.h',
93 'display/display_info.cc', 93 'display/display_info.cc',
94 'display/display_layout.h', 94 'display/display_layout.h',
95 'display/display_layout.cc', 95 'display/display_layout.cc',
96 'display/display_layout_store.h', 96 'display/display_layout_store.h',
97 'display/display_layout_store.cc', 97 'display/display_layout_store.cc',
98 'display/display_manager.cc', 98 'display/display_manager.cc',
99 'display/display_manager.h', 99 'display/display_manager.h',
100 'display/display_pref_util.h', 100 'display/display_pref_util.h',
101 'display/display_util_x11.cc',
102 'display/display_util_x11.h',
101 'display/event_transformation_handler.cc', 103 'display/event_transformation_handler.cc',
102 'display/event_transformation_handler.h', 104 'display/event_transformation_handler.h',
103 'display/mirror_window_controller.cc', 105 'display/mirror_window_controller.cc',
104 'display/mirror_window_controller.h', 106 'display/mirror_window_controller.h',
105 'display/mouse_cursor_event_filter.cc', 107 'display/mouse_cursor_event_filter.cc',
106 'display/mouse_cursor_event_filter.h', 108 'display/mouse_cursor_event_filter.h',
107 'display/output_configurator_animation.cc', 109 'display/output_configurator_animation.cc',
108 'display/output_configurator_animation.h', 110 'display/output_configurator_animation.h',
109 'display/root_window_transformers.cc', 111 'display/root_window_transformers.cc',
110 'display/root_window_transformers.h', 112 'display/root_window_transformers.h',
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 'dependencies': [ 789 'dependencies': [
788 # Mac tests access resources via the 'AuraShell.app' directory. 790 # Mac tests access resources via the 'AuraShell.app' directory.
789 'ash_shell', 791 'ash_shell',
790 ], 792 ],
791 # Special linker instructions that avoids stripping Obj-C classes that 793 # Special linker instructions that avoids stripping Obj-C classes that
792 # are not referenced in code, but are referenced in nibs. 794 # are not referenced in code, but are referenced in nibs.
793 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 795 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
794 }], 796 }],
795 ['use_x11==1', { 797 ['use_x11==1', {
796 'sources': [ 798 'sources': [
797 'display/display_change_observer_x11_unittest.cc' 799 'display/display_util_x11_unittest.cc'
798 ], 800 ],
799 }], 801 }],
800 ['chromeos!=1', { 802 ['chromeos!=1', {
801 'sources/': [ 803 'sources/': [
802 ['exclude', 'display/display_error_observer_unittest.cc'], 804 ['exclude', 'display/display_error_observer_unittest.cc'],
803 ], 805 ],
804 }, { # chromeos==1 806 }, { # chromeos==1
805 'dependencies': [ 807 'dependencies': [
806 '../chromeos/chromeos.gyp:power_manager_proto', 808 '../chromeos/chromeos.gyp:power_manager_proto',
807 ], 809 ],
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 'shell/cocoa/app-Info.plist', 909 'shell/cocoa/app-Info.plist',
908 ], 910 ],
909 'xcode_settings': { 911 'xcode_settings': {
910 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 912 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
911 }, 913 },
912 }], 914 }],
913 ], 915 ],
914 }, 916 },
915 ], 917 ],
916 } 918 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698