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

Side by Side Diff: chrome/chrome.gyp

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 766 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
767 ], 767 ],
768 }, 768 },
769 }], 769 }],
770 ], 770 ],
771 }, 771 },
772 # A library for sending and receiving server-issued notifications. 772 # A library for sending and receiving server-issued notifications.
773 { 773 {
774 'target_name': 'sync_notifier', 774 'target_name': 'sync_notifier',
775 'type': 'static_library', 775 'type': 'static_library',
776 'msvs_disable_precompiled_header': '1',
776 'sources': [ 777 'sources': [
777 'browser/sync/notifier/cache_invalidation_packet_handler.cc', 778 'browser/sync/notifier/cache_invalidation_packet_handler.cc',
778 'browser/sync/notifier/cache_invalidation_packet_handler.h', 779 'browser/sync/notifier/cache_invalidation_packet_handler.h',
779 'browser/sync/notifier/chrome_invalidation_client.cc', 780 'browser/sync/notifier/chrome_invalidation_client.cc',
780 'browser/sync/notifier/chrome_invalidation_client.h', 781 'browser/sync/notifier/chrome_invalidation_client.h',
781 'browser/sync/notifier/chrome_system_resources.cc', 782 'browser/sync/notifier/chrome_system_resources.cc',
782 'browser/sync/notifier/chrome_system_resources.h', 783 'browser/sync/notifier/chrome_system_resources.h',
783 'browser/sync/notifier/invalidation_notifier.h', 784 'browser/sync/notifier/invalidation_notifier.h',
784 'browser/sync/notifier/invalidation_notifier.cc', 785 'browser/sync/notifier/invalidation_notifier.cc',
785 'browser/sync/notifier/invalidation_util.cc', 786 'browser/sync/notifier/invalidation_util.cc',
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 'destination': '<(PRODUCT_DIR)', 1709 'destination': '<(PRODUCT_DIR)',
1709 'files': [ 1710 'files': [
1710 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1711 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1711 ], 1712 ],
1712 }, 1713 },
1713 ], 1714 ],
1714 }], # targets 1715 }], # targets
1715 }], # os_posix == 1 and OS != "mac" 1716 }], # os_posix == 1 and OS != "mac"
1716 ], # 'conditions' 1717 ], # 'conditions'
1717 } 1718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698