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

Side by Side Diff: chrome/chrome.gyp

Issue 7621085: Server directed error handling backend code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 9 years, 4 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
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.cc',
511 'browser/sync/engine/syncapi.h', 512 'browser/sync/engine/syncapi.h',
512 'browser/sync/engine/configure_reason.h' 513 'browser/sync/engine/sync_error.h',
513 ], 514 ],
514 'include_dirs': [ 515 'include_dirs': [
515 '..', 516 '..',
516 ], 517 ],
517 'defines' : [ 518 'defines' : [
518 '_CRT_SECURE_NO_WARNINGS', 519 '_CRT_SECURE_NO_WARNINGS',
519 '_USE_32BIT_TIME_T', 520 '_USE_32BIT_TIME_T',
520 ], 521 ],
521 'dependencies': [ 522 'dependencies': [
522 '../base/base.gyp:base', 523 '../base/base.gyp:base',
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 'destination': '<(PRODUCT_DIR)', 1709 'destination': '<(PRODUCT_DIR)',
1709 'files': [ 1710 'files': [
1710 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1711 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1711 ], 1712 ],
1712 }, 1713 },
1713 ], 1714 ],
1714 }], # targets 1715 }], # targets
1715 }], # os_posix == 1 and OS != "mac" 1716 }], # os_posix == 1 and OS != "mac"
1716 ], # 'conditions' 1717 ], # 'conditions'
1717 } 1718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698