OLD | NEW |
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 }, | 243 }, |
244 { | 244 { |
245 # Provides a syncapi dynamic library target from checked-in binaries, | 245 # Provides a syncapi dynamic library target from checked-in binaries, |
246 # or from compiling a stub implementation. | 246 # or from compiling a stub implementation. |
247 'target_name': 'syncapi_core', | 247 'target_name': 'syncapi_core', |
248 'type': 'static_library', | 248 'type': 'static_library', |
249 'variables': { 'enable_wexit_time_destructors': 1, }, | 249 'variables': { 'enable_wexit_time_destructors': 1, }, |
250 'sources': [ | 250 'sources': [ |
251 'browser/sync/engine/syncapi_internal.cc', | 251 'browser/sync/engine/syncapi_internal.cc', |
252 'browser/sync/engine/syncapi_internal.h', | 252 'browser/sync/engine/syncapi_internal.h', |
| 253 'browser/sync/internal_api/includes/unrecoverable_error_handler.h', |
253 'browser/sync/internal_api/base_node.cc', | 254 'browser/sync/internal_api/base_node.cc', |
254 'browser/sync/internal_api/base_node.h', | 255 'browser/sync/internal_api/base_node.h', |
255 'browser/sync/internal_api/base_transaction.cc', | 256 'browser/sync/internal_api/base_transaction.cc', |
256 'browser/sync/internal_api/base_transaction.h', | 257 'browser/sync/internal_api/base_transaction.h', |
257 'browser/sync/internal_api/change_record.cc', | 258 'browser/sync/internal_api/change_record.cc', |
258 'browser/sync/internal_api/change_record.h', | 259 'browser/sync/internal_api/change_record.h', |
259 'browser/sync/internal_api/change_reorder_buffer.cc', | 260 'browser/sync/internal_api/change_reorder_buffer.cc', |
260 'browser/sync/internal_api/change_reorder_buffer.h', | 261 'browser/sync/internal_api/change_reorder_buffer.h', |
261 'browser/sync/internal_api/configure_reason.h', | 262 'browser/sync/internal_api/configure_reason.h', |
262 'browser/sync/internal_api/debug_info_event_listener.cc', | 263 'browser/sync/internal_api/debug_info_event_listener.cc', |
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1299 'configurations': { | 1300 'configurations': { |
1300 'Common_Base': { | 1301 'Common_Base': { |
1301 'msvs_target_platform': 'x64', | 1302 'msvs_target_platform': 'x64', |
1302 }, | 1303 }, |
1303 }, | 1304 }, |
1304 }, | 1305 }, |
1305 ]}, # 'targets' | 1306 ]}, # 'targets' |
1306 ], # OS=="win" | 1307 ], # OS=="win" |
1307 ], # 'conditions' | 1308 ], # 'conditions' |
1308 } | 1309 } |
OLD | NEW |