OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'include_dirs': [ | 6 'include_dirs': [ |
7 '..', | 7 '..', |
8 ], | 8 ], |
9 'defines': [ | 9 'defines': [ |
10 'SYNC_IMPLEMENTATION', | 10 'SYNC_IMPLEMENTATION', |
11 ], | 11 ], |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
14 '../base/base.gyp:base_i18n', | 14 '../base/base.gyp:base_i18n', |
15 '../crypto/crypto.gyp:crypto', | 15 '../crypto/crypto.gyp:crypto', |
16 '../google_apis/google_apis.gyp:google_apis', | 16 '../google_apis/google_apis.gyp:google_apis', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 '../sql/sql.gyp:sql', | 18 '../sql/sql.gyp:sql', |
19 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
20 ], | 20 ], |
21 'conditions': [ | 21 'conditions': [ |
22 ['OS=="linux" and chromeos==1', { | 22 ['OS=="linux" and chromeos==1', { |
23 # Required by get_session_name.cc on Chrome OS. | 23 # Required by get_session_name.cc on Chrome OS. |
24 'dependencies': [ | 24 'dependencies': [ |
25 '../chromeos/chromeos.gyp:chromeos', | 25 '../chromeos/chromeos.gyp:chromeos', |
26 ], | 26 ], |
27 }], | 27 }], |
| 28 ['OS=="mac"', { |
| 29 'link_settings': { |
| 30 'libraries': [ |
| 31 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework', |
| 32 ], |
| 33 }, |
| 34 }], |
28 ], | 35 ], |
29 'sources': [ | 36 'sources': [ |
30 'base/sync_export.h', | 37 'base/sync_export.h', |
31 'engine/all_status.cc', | 38 'engine/all_status.cc', |
32 'engine/all_status.h', | 39 'engine/all_status.h', |
33 'engine/apply_control_data_updates.cc', | 40 'engine/apply_control_data_updates.cc', |
34 'engine/apply_control_data_updates.h', | 41 'engine/apply_control_data_updates.h', |
35 'engine/apply_updates_and_resolve_conflicts_command.cc', | 42 'engine/apply_updates_and_resolve_conflicts_command.cc', |
36 'engine/apply_updates_and_resolve_conflicts_command.h', | 43 'engine/apply_updates_and_resolve_conflicts_command.h', |
37 'engine/backoff_delay_provider.cc', | 44 'engine/backoff_delay_provider.cc', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'util/get_session_name_win.cc', | 195 'util/get_session_name_win.cc', |
189 'util/get_session_name_win.h', | 196 'util/get_session_name_win.h', |
190 'util/logging.cc', | 197 'util/logging.cc', |
191 'util/logging.h', | 198 'util/logging.h', |
192 'util/nigori.cc', | 199 'util/nigori.cc', |
193 'util/nigori.h', | 200 'util/nigori.h', |
194 'util/time.cc', | 201 'util/time.cc', |
195 'util/time.h', | 202 'util/time.h', |
196 ], | 203 ], |
197 } | 204 } |
OLD | NEW |