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

Side by Side Diff: chrome/chrome.gyp

Issue 250001: Second attempt at the new syncer thread impl, now with less crashes!... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
« no previous file with comments | « chrome/browser/sync/engine/syncer_thread_unittest.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 4574 matching lines...) Expand 10 before | Expand all | Expand 10 after
4585 '_USE_32BIT_TIME_T', 4585 '_USE_32BIT_TIME_T',
4586 ], 4586 ],
4587 'dependencies': [ 4587 'dependencies': [
4588 '../base/base.gyp:base', 4588 '../base/base.gyp:base',
4589 '../build/temp_gyp/googleurl.gyp:googleurl', 4589 '../build/temp_gyp/googleurl.gyp:googleurl',
4590 '../net/net.gyp:net', 4590 '../net/net.gyp:net',
4591 '../third_party/icu/icu.gyp:icuuc', 4591 '../third_party/icu/icu.gyp:icuuc',
4592 '../third_party/libjingle/libjingle.gyp:libjingle', 4592 '../third_party/libjingle/libjingle.gyp:libjingle',
4593 '../third_party/protobuf2/protobuf.gyp:protobuf', 4593 '../third_party/protobuf2/protobuf.gyp:protobuf',
4594 '../third_party/sqlite/sqlite.gyp:sqlite', 4594 '../third_party/sqlite/sqlite.gyp:sqlite',
4595 'common',
4595 'notifier', 4596 'notifier',
4596 'sync', 4597 'sync',
4597 ], 4598 ],
4598 'conditions': [ 4599 'conditions': [
4599 ['OS=="win"', { 4600 ['OS=="win"', {
4600 'defines' : [ 4601 'defines' : [
4601 'COMPILER_MSVC', 4602 'COMPILER_MSVC',
4602 ], 4603 ],
4603 'msvs_settings': { 4604 'msvs_settings': {
4604 'VCLinkerTool': { 4605 'VCLinkerTool': {
(...skipping 1953 matching lines...) Expand 10 before | Expand all | Expand 10 after
6558 'browser/sync/engine/syncer_command.h', 6559 'browser/sync/engine/syncer_command.h',
6559 'browser/sync/engine/syncer_end_command.cc', 6560 'browser/sync/engine/syncer_end_command.cc',
6560 'browser/sync/engine/syncer_end_command.h', 6561 'browser/sync/engine/syncer_end_command.h',
6561 'browser/sync/engine/syncer_proto_util.cc', 6562 'browser/sync/engine/syncer_proto_util.cc',
6562 'browser/sync/engine/syncer_proto_util.h', 6563 'browser/sync/engine/syncer_proto_util.h',
6563 'browser/sync/engine/syncer_session.h', 6564 'browser/sync/engine/syncer_session.h',
6564 'browser/sync/engine/syncer_status.cc', 6565 'browser/sync/engine/syncer_status.cc',
6565 'browser/sync/engine/syncer_status.h', 6566 'browser/sync/engine/syncer_status.h',
6566 'browser/sync/engine/syncer_thread.cc', 6567 'browser/sync/engine/syncer_thread.cc',
6567 'browser/sync/engine/syncer_thread.h', 6568 'browser/sync/engine/syncer_thread.h',
6569 'browser/sync/engine/syncer_thread_timed_stop.cc',
6570 'browser/sync/engine/syncer_thread_timed_stop.h',
6571 'browser/sync/engine/syncer_thread_pthreads.cc',
6572 'browser/sync/engine/syncer_thread_pthreads.h',
6568 'browser/sync/engine/syncer_types.h', 6573 'browser/sync/engine/syncer_types.h',
6569 'browser/sync/engine/syncer_util.cc', 6574 'browser/sync/engine/syncer_util.cc',
6570 'browser/sync/engine/syncer_util.h', 6575 'browser/sync/engine/syncer_util.h',
6571 'browser/sync/engine/syncproto.h', 6576 'browser/sync/engine/syncproto.h',
6572 'browser/sync/engine/update_applicator.cc', 6577 'browser/sync/engine/update_applicator.cc',
6573 'browser/sync/engine/update_applicator.h', 6578 'browser/sync/engine/update_applicator.h',
6574 'browser/sync/engine/verify_updates_command.cc', 6579 'browser/sync/engine/verify_updates_command.cc',
6575 'browser/sync/engine/verify_updates_command.h', 6580 'browser/sync/engine/verify_updates_command.h',
6576 'browser/sync/protocol/service_constants.h', 6581 'browser/sync/protocol/service_constants.h',
6577 'browser/sync/syncable/blob.h', 6582 'browser/sync/syncable/blob.h',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
6658 'defines': [ 6663 'defines': [
6659 'POSIX', 6664 'POSIX',
6660 ], 6665 ],
6661 }], 6666 }],
6662 ], 6667 ],
6663 }, 6668 },
6664 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 6669 ], # targets when chrome_personalization==1 and use_syncapi_stub==0
6665 }], 6670 }],
6666 ], # 'conditions' 6671 ], # 'conditions'
6667 } 6672 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/engine/syncer_thread_unittest.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698