| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 'profile_import/profile_import_thread.cc', | 498 'profile_import/profile_import_thread.cc', |
| 499 'profile_import/profile_import_thread.h', | 499 'profile_import/profile_import_thread.h', |
| 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/configure_reason.h' |
| 508 'browser/sync/engine/http_post_provider_factory.h', | 509 'browser/sync/engine/http_post_provider_factory.h', |
| 509 'browser/sync/engine/http_post_provider_interface.h', | 510 'browser/sync/engine/http_post_provider_interface.h', |
| 510 'browser/sync/engine/syncapi.cc', | 511 'browser/sync/engine/syncapi_internal.cc', |
| 511 'browser/sync/engine/syncapi.h', | 512 'browser/sync/engine/syncapi_internal.h', |
| 512 'browser/sync/engine/configure_reason.h' | 513 'browser/sync/internal_api/base_node.cc', |
| 514 'browser/sync/internal_api/base_node.h', |
| 515 'browser/sync/internal_api/base_transaction.cc', |
| 516 'browser/sync/internal_api/base_transaction.h', |
| 517 'browser/sync/internal_api/read_node.cc', |
| 518 'browser/sync/internal_api/read_node.h', |
| 519 'browser/sync/internal_api/read_transaction.cc', |
| 520 'browser/sync/internal_api/read_transaction.h', |
| 521 'browser/sync/internal_api/sync_manager.cc', |
| 522 'browser/sync/internal_api/sync_manager.h', |
| 523 'browser/sync/internal_api/user_share.cc', |
| 524 'browser/sync/internal_api/user_share.h', |
| 525 'browser/sync/internal_api/write_node.cc', |
| 526 'browser/sync/internal_api/write_node.h', |
| 527 'browser/sync/internal_api/write_transaction.cc', |
| 528 'browser/sync/internal_api/write_transaction.h', |
| 513 ], | 529 ], |
| 514 'include_dirs': [ | 530 'include_dirs': [ |
| 515 '..', | 531 '..', |
| 516 ], | 532 ], |
| 517 'defines' : [ | 533 'defines' : [ |
| 518 '_CRT_SECURE_NO_WARNINGS', | 534 '_CRT_SECURE_NO_WARNINGS', |
| 519 '_USE_32BIT_TIME_T', | 535 '_USE_32BIT_TIME_T', |
| 520 ], | 536 ], |
| 521 'dependencies': [ | 537 'dependencies': [ |
| 522 '../base/base.gyp:base', | 538 '../base/base.gyp:base', |
| (...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1713 'destination': '<(PRODUCT_DIR)', | 1729 'destination': '<(PRODUCT_DIR)', |
| 1714 'files': [ | 1730 'files': [ |
| 1715 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1731 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
| 1716 ], | 1732 ], |
| 1717 }, | 1733 }, |
| 1718 ], | 1734 ], |
| 1719 }], # targets | 1735 }], # targets |
| 1720 }], # os_posix == 1 and OS != "mac" | 1736 }], # os_posix == 1 and OS != "mac" |
| 1721 ], # 'conditions' | 1737 ], # 'conditions' |
| 1722 } | 1738 } |
| OLD | NEW |