| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 '<(SHARED_INTERMEDIATE_DIR)/ash/ash_resources/ash_wallpaper_resources.rc
', | 616 '<(SHARED_INTERMEDIATE_DIR)/ash/ash_resources/ash_wallpaper_resources.rc
', |
| 617 ], | 617 ], |
| 618 'conditions': [ | 618 'conditions': [ |
| 619 ['use_ibus==1', { | 619 ['use_ibus==1', { |
| 620 'dependencies': [ | 620 'dependencies': [ |
| 621 '../build/linux/system.gyp:ibus', | 621 '../build/linux/system.gyp:ibus', |
| 622 ], | 622 ], |
| 623 }], | 623 }], |
| 624 ['OS=="win"', { | 624 ['OS=="win"', { |
| 625 'sources/': [ | 625 'sources/': [ |
| 626 # TODO(win_ash): implement DragDropController::StartDragAndDrop | |
| 627 ['exclude', 'drag_drop/drag_drop_controller_unittest.cc'], | |
| 628 # TODO(zork): fix this test to build on Windows. See: crosbug.com/2690
6 | 626 # TODO(zork): fix this test to build on Windows. See: crosbug.com/2690
6 |
| 629 ['exclude', 'focus_cycler_unittest.cc'], | 627 ['exclude', 'focus_cycler_unittest.cc'], |
| 630 # All tests for multiple displays: not supported on Windows Ash. | 628 # All tests for multiple displays: not supported on Windows Ash. |
| 631 ['exclude', 'wm/drag_window_resizer_unittest.cc'], | 629 ['exclude', 'wm/drag_window_resizer_unittest.cc'], |
| 632 ], | 630 ], |
| 633 }], | 631 }], |
| 634 ['OS=="mac"', { | 632 ['OS=="mac"', { |
| 635 'sources/': [ | 633 'sources/': [ |
| 636 ['exclude', 'accelerators/accelerator_controller_unittest.cc'], | 634 ['exclude', 'accelerators/accelerator_controller_unittest.cc'], |
| 637 ['exclude', 'accelerators/accelerator_filter_unittest.cc'], | 635 ['exclude', 'accelerators/accelerator_filter_unittest.cc'], |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 'shell/cocoa/app-Info.plist', | 737 'shell/cocoa/app-Info.plist', |
| 740 ], | 738 ], |
| 741 'xcode_settings': { | 739 'xcode_settings': { |
| 742 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 740 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
| 743 }, | 741 }, |
| 744 }], | 742 }], |
| 745 ], | 743 ], |
| 746 }, | 744 }, |
| 747 ], | 745 ], |
| 748 } | 746 } |
| OLD | NEW |