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

Side by Side Diff: chrome/chrome.gyp

Issue 267090: IOKit Framework is mac-only. (Closed)
Patch Set: Created 11 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 6732 matching lines...) Expand 10 before | Expand all | Expand 10 after
6743 ], 6743 ],
6744 'defines' : [ 6744 'defines' : [
6745 'SYNC_ENGINE_VERSION_STRING="Unknown"', 6745 'SYNC_ENGINE_VERSION_STRING="Unknown"',
6746 '_CRT_SECURE_NO_WARNINGS', 6746 '_CRT_SECURE_NO_WARNINGS',
6747 '_USE_32BIT_TIME_T', 6747 '_USE_32BIT_TIME_T',
6748 ], 6748 ],
6749 'dependencies': [ 6749 'dependencies': [
6750 '../third_party/libjingle/libjingle.gyp:libjingle', 6750 '../third_party/libjingle/libjingle.gyp:libjingle',
6751 'sync_proto', 6751 'sync_proto',
6752 ], 6752 ],
6753 'link_settings': {
6754 'libraries': [
6755 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
6756 ],
6757 },
6758 'conditions': [ 6753 'conditions': [
6759 ['OS=="win"', { 6754 ['OS=="win"', {
6760 'sources' : [ 6755 'sources' : [
6761 'browser/sync/util/data_encryption.cc', 6756 'browser/sync/util/data_encryption.cc',
6762 'browser/sync/util/data_encryption.h', 6757 'browser/sync/util/data_encryption.h',
6763 'browser/sync/util/path_helpers.cc', 6758 'browser/sync/util/path_helpers.cc',
6764 ], 6759 ],
6765 }], 6760 }],
6766 ['OS=="linux"', { 6761 ['OS=="linux"', {
6767 'defines': [ 6762 'defines': [
6768 'POSIX', 6763 'POSIX',
6769 ], 6764 ],
6770 }], 6765 }],
6766 ['OS=="mac"', {
6767 'link_settings': {
6768 'libraries': [
6769 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
6770 ],
6771 },
6772 }],
6771 ], 6773 ],
6772 }, 6774 },
6773 ], # targets when chrome_personalization==1 6775 ], # targets when chrome_personalization==1
6774 }], 6776 }],
6775 ], # 'conditions' 6777 ], # 'conditions'
6776 } 6778 }
6777 6779
6778 # Local Variables: 6780 # Local Variables:
6779 # tab-width:2 6781 # tab-width:2
6780 # indent-tabs-mode:nil 6782 # indent-tabs-mode:nil
6781 # End: 6783 # End:
6782 # vim: set expandtab tabstop=2 shiftwidth=2: 6784 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698