OLD | NEW |
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 Loading... |
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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 'dependencies': [ | 786 'dependencies': [ |
785 # Mac tests access resources via the 'AuraShell.app' directory. | 787 # Mac tests access resources via the 'AuraShell.app' directory. |
786 'ash_shell', | 788 'ash_shell', |
787 ], | 789 ], |
788 # Special linker instructions that avoids stripping Obj-C classes that | 790 # Special linker instructions that avoids stripping Obj-C classes that |
789 # are not referenced in code, but are referenced in nibs. | 791 # are not referenced in code, but are referenced in nibs. |
790 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 792 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
791 }], | 793 }], |
792 ['use_x11==1', { | 794 ['use_x11==1', { |
793 'sources': [ | 795 'sources': [ |
794 'display/display_change_observer_x11_unittest.cc' | 796 'display/display_util_x11_unittest.cc' |
795 ], | 797 ], |
796 }], | 798 }], |
797 ['chromeos!=1', { | 799 ['chromeos!=1', { |
798 'sources/': [ | 800 'sources/': [ |
799 ['exclude', 'display/display_error_observer_unittest.cc'], | 801 ['exclude', 'display/display_error_observer_unittest.cc'], |
800 ], | 802 ], |
801 }, { # chromeos==1 | 803 }, { # chromeos==1 |
802 'dependencies': [ | 804 'dependencies': [ |
803 '../chromeos/chromeos.gyp:power_manager_proto', | 805 '../chromeos/chromeos.gyp:power_manager_proto', |
804 ], | 806 ], |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
904 'shell/cocoa/app-Info.plist', | 906 'shell/cocoa/app-Info.plist', |
905 ], | 907 ], |
906 'xcode_settings': { | 908 'xcode_settings': { |
907 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 909 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
908 }, | 910 }, |
909 }], | 911 }], |
910 ], | 912 ], |
911 }, | 913 }, |
912 ], | 914 ], |
913 } | 915 } |
OLD | NEW |