Chromium Code Reviews| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 'desktop_background/desktop_background_controller.h', | 76 'desktop_background/desktop_background_controller.h', |
| 77 'desktop_background/desktop_background_controller_observer.h', | 77 'desktop_background/desktop_background_controller_observer.h', |
| 78 'desktop_background/desktop_background_view.cc', | 78 'desktop_background/desktop_background_view.cc', |
| 79 'desktop_background/desktop_background_view.h', | 79 'desktop_background/desktop_background_view.h', |
| 80 'desktop_background/desktop_background_widget_controller.cc', | 80 'desktop_background/desktop_background_widget_controller.cc', |
| 81 'desktop_background/desktop_background_widget_controller.h', | 81 'desktop_background/desktop_background_widget_controller.h', |
| 82 'desktop_background/user_wallpaper_delegate.h', | 82 'desktop_background/user_wallpaper_delegate.h', |
| 83 'desktop_background/wallpaper_resizer.cc', | 83 'desktop_background/wallpaper_resizer.cc', |
| 84 'desktop_background/wallpaper_resizer.h', | 84 'desktop_background/wallpaper_resizer.h', |
| 85 'desktop_background/wallpaper_resizer_observer.h', | 85 'desktop_background/wallpaper_resizer_observer.h', |
| 86 'display/display_change_observer_x11.cc', | 86 'display/display_change_observer_chromeos.cc', |
| 87 'display/display_change_observer_x11.h', | 87 'display/display_change_observer_chromeos.h', |
| 88 'display/display_controller.cc', | 88 'display/display_controller.cc', |
| 89 'display/display_controller.h', | 89 'display/display_controller.h', |
| 90 'display/display_error_observer.cc', | 90 'display/display_error_observer_chromeos.cc', |
| 91 'display/display_error_observer.h', | 91 'display/display_error_observer_chromeos.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', | |
| 103 'display/event_transformation_handler.cc', | 101 'display/event_transformation_handler.cc', |
| 104 'display/event_transformation_handler.h', | 102 'display/event_transformation_handler.h', |
| 105 'display/mirror_window_controller.cc', | 103 'display/mirror_window_controller.cc', |
| 106 'display/mirror_window_controller.h', | 104 'display/mirror_window_controller.h', |
| 107 'display/mouse_cursor_event_filter.cc', | 105 'display/mouse_cursor_event_filter.cc', |
| 108 'display/mouse_cursor_event_filter.h', | 106 'display/mouse_cursor_event_filter.h', |
| 109 'display/output_configurator_animation.cc', | 107 'display/output_configurator_animation.cc', |
| 110 'display/output_configurator_animation.h', | 108 'display/output_configurator_animation.h', |
| 111 'display/resolution_notification_controller.cc', | 109 'display/resolution_notification_controller.cc', |
| 112 'display/resolution_notification_controller.h', | 110 'display/resolution_notification_controller.h', |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 548 ], | 546 ], |
| 549 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 547 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 550 'msvs_disabled_warnings': [ 4267, ], | 548 'msvs_disabled_warnings': [ 4267, ], |
| 551 }], | 549 }], |
| 552 ['OS!="linux"', { | 550 ['OS!="linux"', { |
| 553 'sources/': [ | 551 'sources/': [ |
| 554 ['exclude', 'system/monitor/tray_monitor.cc'], | 552 ['exclude', 'system/monitor/tray_monitor.cc'], |
| 555 ['exclude', 'system/monitor/tray_monitor.h'], | 553 ['exclude', 'system/monitor/tray_monitor.h'], |
| 556 ], | 554 ], |
| 557 }], | 555 }], |
| 556 ['use_x11!=1', { | |
|
oshima
2013/08/19 20:00:24
can you add rule in build/filename_rules.gypi inst
Daniel Erat
2013/08/19 22:09:30
_chromeos.* should already be filtered out of non-
| |
| 557 'sources/': [ | |
| 558 ['exclude', 'display/display_change_observer_chromeos.cc'], | |
| 559 ['exclude', 'display/display_change_observer_chromeos.h'], | |
| 560 ['exclude', 'display/display_error_observer_chromeos.cc'], | |
| 561 ['exclude', 'display/display_error_observer_chromeos.h'], | |
| 562 ], | |
| 563 }], | |
| 558 ['chromeos==1', { | 564 ['chromeos==1', { |
| 559 'dependencies': [ | 565 'dependencies': [ |
| 560 '../chromeos/chromeos.gyp:chromeos', | 566 '../chromeos/chromeos.gyp:chromeos', |
| 561 # Ash #includes power_supply_properties.pb.h directly. | 567 # Ash #includes power_supply_properties.pb.h directly. |
| 562 '../chromeos/chromeos.gyp:power_manager_proto', | 568 '../chromeos/chromeos.gyp:power_manager_proto', |
| 563 ], | 569 ], |
| 564 }, { # else: chromeos!=1 | 570 }, { # else: chromeos!=1 |
| 565 'sources/': [ | 571 'sources/': [ |
| 566 ['exclude', '/chromeos/'], | 572 ['exclude', '/chromeos/'], |
| 567 ['exclude', 'display/display_error_observer.cc'], | |
| 568 ['exclude', 'display/display_error_observer.h'], | |
| 569 ['exclude', 'display/output_configurator_animation.cc'], | 573 ['exclude', 'display/output_configurator_animation.cc'], |
| 570 ['exclude', 'display/output_configurator_animation.h'], | 574 ['exclude', 'display/output_configurator_animation.h'], |
| 571 ], | 575 ], |
| 572 }], | 576 }], |
| 573 ], | 577 ], |
| 574 }, | 578 }, |
| 575 { | 579 { |
| 576 'target_name': 'ash_test_support', | 580 'target_name': 'ash_test_support', |
| 577 'type': 'static_library', | 581 'type': 'static_library', |
| 578 'dependencies': [ | 582 'dependencies': [ |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 667 '../ui/views/test/test_views_delegate.cc', | 671 '../ui/views/test/test_views_delegate.cc', |
| 668 '../ui/views/test/test_views_delegate.h', | 672 '../ui/views/test/test_views_delegate.h', |
| 669 'accelerators/accelerator_controller_unittest.cc', | 673 'accelerators/accelerator_controller_unittest.cc', |
| 670 'accelerators/accelerator_filter_unittest.cc', | 674 'accelerators/accelerator_filter_unittest.cc', |
| 671 'accelerators/accelerator_table_unittest.cc', | 675 'accelerators/accelerator_table_unittest.cc', |
| 672 'accelerators/nested_dispatcher_controller_unittest.cc', | 676 'accelerators/nested_dispatcher_controller_unittest.cc', |
| 673 'desktop_background/desktop_background_controller_unittest.cc', | 677 'desktop_background/desktop_background_controller_unittest.cc', |
| 674 'desktop_background/wallpaper_resizer_unittest.cc', | 678 'desktop_background/wallpaper_resizer_unittest.cc', |
| 675 'dip_unittest.cc', | 679 'dip_unittest.cc', |
| 676 'display/display_controller_unittest.cc', | 680 'display/display_controller_unittest.cc', |
| 677 'display/display_error_observer_unittest.cc', | 681 'display/display_change_observer_chromeos_unittest.cc', |
| 682 'display/display_error_observer_chromeos_unittest.cc', | |
| 678 'display/display_info_unittest.cc', | 683 'display/display_info_unittest.cc', |
| 679 'display/display_manager_unittest.cc', | 684 'display/display_manager_unittest.cc', |
| 680 'display/mirror_window_controller_unittest.cc', | 685 'display/mirror_window_controller_unittest.cc', |
| 681 'display/mouse_cursor_event_filter_unittest.cc', | 686 'display/mouse_cursor_event_filter_unittest.cc', |
| 682 'display/resolution_notification_controller_unittest.cc', | 687 'display/resolution_notification_controller_unittest.cc', |
| 683 'display/root_window_transformers_unittest.cc', | 688 'display/root_window_transformers_unittest.cc', |
| 684 'display/screen_position_controller_unittest.cc', | 689 'display/screen_position_controller_unittest.cc', |
| 685 'drag_drop/drag_drop_controller_unittest.cc', | 690 'drag_drop/drag_drop_controller_unittest.cc', |
| 686 'drag_drop/drag_drop_tracker_unittest.cc', | 691 'drag_drop/drag_drop_tracker_unittest.cc', |
| 687 'extended_desktop_unittest.cc', | 692 'extended_desktop_unittest.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 797 ['exclude', 'tooltips/tooltip_controller_unittest.cc'], | 802 ['exclude', 'tooltips/tooltip_controller_unittest.cc'], |
| 798 ], | 803 ], |
| 799 'dependencies': [ | 804 'dependencies': [ |
| 800 # Mac tests access resources via the 'AuraShell.app' directory. | 805 # Mac tests access resources via the 'AuraShell.app' directory. |
| 801 'ash_shell', | 806 'ash_shell', |
| 802 ], | 807 ], |
| 803 # Special linker instructions that avoids stripping Obj-C classes that | 808 # Special linker instructions that avoids stripping Obj-C classes that |
| 804 # are not referenced in code, but are referenced in nibs. | 809 # are not referenced in code, but are referenced in nibs. |
| 805 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 810 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
| 806 }], | 811 }], |
| 807 ['use_x11==1', { | 812 ['use_x11!=1', { |
|
oshima
2013/08/19 20:00:24
ditto
| |
| 808 'sources': [ | 813 'sources/': [ |
| 809 'display/display_util_x11_unittest.cc' | 814 ['exclude', 'display/display_change_observer_chromeos_unittest.cc'], |
| 815 ['exclude', 'display/display_error_observer_chromeos_unittest.cc'], | |
| 810 ], | 816 ], |
| 811 }], | 817 }], |
| 812 ['chromeos!=1', { | 818 ['chromeos==1', { |
| 813 'sources/': [ | |
| 814 ['exclude', 'display/display_error_observer_unittest.cc'], | |
| 815 ], | |
| 816 }, { # chromeos==1 | |
| 817 'dependencies': [ | 819 'dependencies': [ |
| 818 '../chromeos/chromeos.gyp:power_manager_proto', | 820 '../chromeos/chromeos.gyp:power_manager_proto', |
| 819 ], | 821 ], |
| 820 }], | 822 }], |
| 821 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc==1' , { | 823 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc==1' , { |
| 822 'dependencies': [ | 824 'dependencies': [ |
| 823 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 825 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 824 ], | 826 ], |
| 825 'link_settings': { | 827 'link_settings': { |
| 826 'ldflags': ['-rdynamic'], | 828 'ldflags': ['-rdynamic'], |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 919 'shell/cocoa/app-Info.plist', | 921 'shell/cocoa/app-Info.plist', |
| 920 ], | 922 ], |
| 921 'xcode_settings': { | 923 'xcode_settings': { |
| 922 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 924 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
| 923 }, | 925 }, |
| 924 }], | 926 }], |
| 925 ], | 927 ], |
| 926 }, | 928 }, |
| 927 ], | 929 ], |
| 928 } | 930 } |
| OLD | NEW |