OLD | NEW |
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 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 'mac_creator': 'rimZ', | 111 'mac_creator': 'rimZ', |
112 }, { # else: branding!="Chrome" | 112 }, { # else: branding!="Chrome" |
113 'mac_bundle_id': 'org.chromium.Chromium', | 113 'mac_bundle_id': 'org.chromium.Chromium', |
114 'mac_creator': 'Cr24', | 114 'mac_creator': 'Cr24', |
115 }], # branding | 115 }], # branding |
116 ], # conditions | 116 ], # conditions |
117 }], # OS=="mac" | 117 }], # OS=="mac" |
118 ['OS=="win"', { | 118 ['OS=="win"', { |
119 # Whether or not browser sync code is built in. | 119 # Whether or not browser sync code is built in. |
120 'chrome_personalization%': 1, | 120 'chrome_personalization%': 1, |
121 | |
122 # Used to build a stub (no-op) syncapi engine. | 121 # Used to build a stub (no-op) syncapi engine. |
123 'conditions': [ | 122 'use_syncapi_stub%': 0, |
124 ['branding=="Chrome"', { | |
125 'use_syncapi_stub%': 0, | |
126 }, { | |
127 'use_syncapi_stub%': 1, | |
128 }], | |
129 ], | |
130 }, { | 123 }, { |
131 'chrome_personalization%': 0, | 124 'chrome_personalization%': 0, |
132 'use_syncapi_stub%': 1, | 125 'use_syncapi_stub%': 1, |
133 }], | 126 }], # OS=="win" |
134 ], # conditions | 127 ], # conditions |
135 }, # variables | 128 }, # variables |
136 'target_defaults': { | 129 'target_defaults': { |
137 'sources/': [ | 130 'sources/': [ |
138 ['exclude', '/(cocoa|gtk|win)/'], | 131 ['exclude', '/(cocoa|gtk|win)/'], |
139 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.(
cc|mm?)$'], | 132 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.(
cc|mm?)$'], |
140 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], | 133 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], |
141 ], | 134 ], |
142 'conditions': [ | 135 'conditions': [ |
143 ['OS=="linux" or OS=="freebsd"', {'sources/': [ | 136 ['OS=="linux" or OS=="freebsd"', {'sources/': [ |
(...skipping 6450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6594 'dependencies': [ | 6587 'dependencies': [ |
6595 '../third_party/pthreads-win32/pthreads.gyp:pthreads', | 6588 '../third_party/pthreads-win32/pthreads.gyp:pthreads', |
6596 ], | 6589 ], |
6597 }], | 6590 }], |
6598 ], | 6591 ], |
6599 }, | 6592 }, |
6600 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6593 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
6601 }], | 6594 }], |
6602 ], # 'conditions' | 6595 ], # 'conditions' |
6603 } | 6596 } |
OLD | NEW |