| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 ], | 588 ], |
| 589 }], | 589 }], |
| 590 ['OS == "mac"', { | 590 ['OS == "mac"', { |
| 591 'link_settings': { | 591 'link_settings': { |
| 592 'libraries': [ | 592 'libraries': [ |
| 593 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', | 593 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', |
| 594 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 594 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 595 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo
rk', | 595 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo
rk', |
| 596 ], | 596 ], |
| 597 }, | 597 }, |
| 598 'sources': [ |
| 599 'sad_tab/cocoa/sad_tab_view_unittest.mm', |
| 600 ], |
| 598 'sources!': [ | 601 'sources!': [ |
| 599 'password_manager/core/browser/password_store_default_unittest.c
c', | 602 'password_manager/core/browser/password_store_default_unittest.c
c', |
| 600 ], | 603 ], |
| 604 'dependencies': [ |
| 605 'components.gyp:sad_tab', |
| 606 ], |
| 601 }], | 607 }], |
| 602 ['OS == "android"', { | 608 ['OS == "android"', { |
| 603 'sources!': [ | 609 'sources!': [ |
| 604 'gcm_driver/gcm_account_mapper_unittest.cc', | 610 'gcm_driver/gcm_account_mapper_unittest.cc', |
| 605 'gcm_driver/gcm_channel_status_request_unittest.cc', | 611 'gcm_driver/gcm_channel_status_request_unittest.cc', |
| 606 'gcm_driver/gcm_client_impl_unittest.cc', | 612 'gcm_driver/gcm_client_impl_unittest.cc', |
| 607 'gcm_driver/gcm_delayed_task_controller_unittest.cc', | 613 'gcm_driver/gcm_delayed_task_controller_unittest.cc', |
| 608 'gcm_driver/gcm_driver_desktop_unittest.cc', | 614 'gcm_driver/gcm_driver_desktop_unittest.cc', |
| 609 'feedback/feedback_common_unittest.cc', | 615 'feedback/feedback_common_unittest.cc', |
| 610 'feedback/feedback_data_unittest.cc', | 616 'feedback/feedback_data_unittest.cc', |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 955 'dependencies': [ | 961 'dependencies': [ |
| 956 '../base/allocator/allocator.gyp:allocator', | 962 '../base/allocator/allocator.gyp:allocator', |
| 957 ], | 963 ], |
| 958 }], | 964 }], |
| 959 ], | 965 ], |
| 960 }, | 966 }, |
| 961 ], | 967 ], |
| 962 }], | 968 }], |
| 963 ], | 969 ], |
| 964 } | 970 } |
| OLD | NEW |