Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: chrome/chrome.gyp

Issue 7453014: [Sync] Refactor sync datatype error handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add operator= Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 'type': 'static_library', 574 'type': 'static_library',
575 'sources': [ 575 'sources': [
576 'browser/sync/api/syncable_service.cc', 576 'browser/sync/api/syncable_service.cc',
577 'browser/sync/api/syncable_service.h', 577 'browser/sync/api/syncable_service.h',
578 'browser/sync/api/sync_data.h', 578 'browser/sync/api/sync_data.h',
579 'browser/sync/api/sync_data.cc', 579 'browser/sync/api/sync_data.cc',
580 'browser/sync/api/sync_change.h', 580 'browser/sync/api/sync_change.h',
581 'browser/sync/api/sync_change.cc', 581 'browser/sync/api/sync_change.cc',
582 'browser/sync/api/sync_change_processor.h', 582 'browser/sync/api/sync_change_processor.h',
583 'browser/sync/api/sync_change_processor.cc', 583 'browser/sync/api/sync_change_processor.cc',
584 'browser/sync/api/sync_error.h',
585 'browser/sync/api/sync_error.cc',
584 ], 586 ],
585 'include_dirs': [ 587 'include_dirs': [
586 '..', 588 '..',
587 ], 589 ],
588 'dependencies': [ 590 'dependencies': [
589 '../base/base.gyp:base', 591 '../base/base.gyp:base',
590 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', 592 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp',
591 'sync', 593 'sync',
592 ], 594 ],
593 'export_dependent_settings': [ 595 'export_dependent_settings': [
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1690 'destination': '<(PRODUCT_DIR)', 1692 'destination': '<(PRODUCT_DIR)',
1691 'files': [ 1693 'files': [
1692 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1694 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1693 ], 1695 ],
1694 }, 1696 },
1695 ], 1697 ],
1696 }], # targets 1698 }], # targets
1697 }], # os_posix == 1 and OS != "mac" 1699 }], # os_posix == 1 and OS != "mac"
1698 ], # 'conditions' 1700 ], # 'conditions'
1699 } 1701 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698