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

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: comments 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1698 'destination': '<(PRODUCT_DIR)', 1700 'destination': '<(PRODUCT_DIR)',
1699 'files': [ 1701 'files': [
1700 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1702 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1701 ], 1703 ],
1702 }, 1704 },
1703 ], 1705 ],
1704 }], # targets 1706 }], # targets
1705 }], # os_posix == 1 and OS != "mac" 1707 }], # os_posix == 1 and OS != "mac"
1706 ], # 'conditions' 1708 ], # 'conditions'
1707 } 1709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698