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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 }, | 255 }, |
256 { | 256 { |
257 # Provides a syncapi dynamic library target from checked-in binaries, | 257 # Provides a syncapi dynamic library target from checked-in binaries, |
258 # or from compiling a stub implementation. | 258 # or from compiling a stub implementation. |
259 'target_name': 'syncapi_core', | 259 'target_name': 'syncapi_core', |
260 'type': 'static_library', | 260 'type': 'static_library', |
261 'variables': { 'enable_wexit_time_destructors': 1, }, | 261 'variables': { 'enable_wexit_time_destructors': 1, }, |
262 'sources': [ | 262 'sources': [ |
263 'browser/sync/engine/syncapi_internal.cc', | 263 'browser/sync/engine/syncapi_internal.cc', |
264 'browser/sync/engine/syncapi_internal.h', | 264 'browser/sync/engine/syncapi_internal.h', |
| 265 'browser/sync/internal_api/includes/syncer_error.cc', |
| 266 'browser/sync/internal_api/includes/syncer_error.h', |
265 'browser/sync/internal_api/includes/unrecoverable_error_handler.h', | 267 'browser/sync/internal_api/includes/unrecoverable_error_handler.h', |
266 'browser/sync/internal_api/base_node.cc', | 268 'browser/sync/internal_api/base_node.cc', |
267 'browser/sync/internal_api/base_node.h', | 269 'browser/sync/internal_api/base_node.h', |
268 'browser/sync/internal_api/base_transaction.cc', | 270 'browser/sync/internal_api/base_transaction.cc', |
269 'browser/sync/internal_api/base_transaction.h', | 271 'browser/sync/internal_api/base_transaction.h', |
270 'browser/sync/internal_api/change_record.cc', | 272 'browser/sync/internal_api/change_record.cc', |
271 'browser/sync/internal_api/change_record.h', | 273 'browser/sync/internal_api/change_record.h', |
272 'browser/sync/internal_api/change_reorder_buffer.cc', | 274 'browser/sync/internal_api/change_reorder_buffer.cc', |
273 'browser/sync/internal_api/change_reorder_buffer.h', | 275 'browser/sync/internal_api/change_reorder_buffer.h', |
274 'browser/sync/internal_api/configure_reason.h', | 276 'browser/sync/internal_api/configure_reason.h', |
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1324 'sources': [ | 1326 'sources': [ |
1325 'browser/safe_browsing/signature_util.h', | 1327 'browser/safe_browsing/signature_util.h', |
1326 'browser/safe_browsing/signature_util_win.cc', | 1328 'browser/safe_browsing/signature_util_win.cc', |
1327 'tools/safe_browsing/sb_sigutil.cc', | 1329 'tools/safe_browsing/sb_sigutil.cc', |
1328 ], | 1330 ], |
1329 }, | 1331 }, |
1330 ]}, # 'targets' | 1332 ]}, # 'targets' |
1331 ], # OS=="win" | 1333 ], # OS=="win" |
1332 ], # 'conditions' | 1334 ], # 'conditions' |
1333 } | 1335 } |
OLD | NEW |