Chromium Code Reviews| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 500 ], | 500 ], |
| 501 }, | 501 }, |
| 502 { | 502 { |
| 503 # Provides a syncapi dynamic library target from checked-in binaries, | 503 # Provides a syncapi dynamic library target from checked-in binaries, |
| 504 # or from compiling a stub implementation. | 504 # or from compiling a stub implementation. |
| 505 'target_name': 'syncapi_core', | 505 'target_name': 'syncapi_core', |
| 506 'type': 'static_library', | 506 'type': 'static_library', |
| 507 'sources': [ | 507 'sources': [ |
| 508 'browser/sync/engine/http_post_provider_factory.h', | 508 'browser/sync/engine/http_post_provider_factory.h', |
| 509 'browser/sync/engine/http_post_provider_interface.h', | 509 'browser/sync/engine/http_post_provider_interface.h', |
| 510 'browser/sync/engine/syncapi.cc', | |
| 511 'browser/sync/engine/syncapi.h', | 510 'browser/sync/engine/syncapi.h', |
| 511 'browser/sync/engine/syncapi_functions.cc', | |
| 512 'browser/sync/engine/syncapi_functions.h', | |
| 513 'browser/sync/engine/syncapi_internal.cc', | |
| 514 'browser/sync/engine/syncapi_internal.h', | |
| 515 'browser/sync/engine/base_node.cc', | |
| 516 'browser/sync/engine/base_node.h', | |
| 517 'browser/sync/engine/read_node.cc', | |
| 518 'browser/sync/engine/read_node.h', | |
| 519 'browser/sync/engine/write_node.cc', | |
|
tim (not reviewing)
2011/08/15 22:53:55
nit- although it wasn't true before, this should b
rlarocque
2011/08/16 18:12:46
Done.
| |
| 520 'browser/sync/engine/write_node.h', | |
| 521 'browser/sync/engine/base_transaction.h', | |
| 522 'browser/sync/engine/base_transaction.cc', | |
| 523 'browser/sync/engine/read_transaction.h', | |
| 524 'browser/sync/engine/read_transaction.cc', | |
| 525 'browser/sync/engine/write_transaction.h', | |
| 526 'browser/sync/engine/write_transaction.cc', | |
| 527 'browser/sync/engine/user_share.h', | |
| 528 'browser/sync/engine/user_share.cc', | |
| 529 'browser/sync/engine/sync_manager.h', | |
| 530 'browser/sync/engine/sync_manager.cc', | |
| 512 'browser/sync/engine/configure_reason.h' | 531 'browser/sync/engine/configure_reason.h' |
| 513 ], | 532 ], |
| 514 'include_dirs': [ | 533 'include_dirs': [ |
| 515 '..', | 534 '..', |
| 516 ], | 535 ], |
| 517 'defines' : [ | 536 'defines' : [ |
| 518 '_CRT_SECURE_NO_WARNINGS', | 537 '_CRT_SECURE_NO_WARNINGS', |
| 519 '_USE_32BIT_TIME_T', | 538 '_USE_32BIT_TIME_T', |
| 520 ], | 539 ], |
| 521 'dependencies': [ | 540 'dependencies': [ |
| (...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1706 'destination': '<(PRODUCT_DIR)', | 1725 'destination': '<(PRODUCT_DIR)', |
| 1707 'files': [ | 1726 'files': [ |
| 1708 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1727 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
| 1709 ], | 1728 ], |
| 1710 }, | 1729 }, |
| 1711 ], | 1730 ], |
| 1712 }], # targets | 1731 }], # targets |
| 1713 }], # os_posix == 1 and OS != "mac" | 1732 }], # os_posix == 1 and OS != "mac" |
| 1714 ], # 'conditions' | 1733 ], # 'conditions' |
| 1715 } | 1734 } |
| OLD | NEW |