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

Side by Side Diff: chrome/chrome.gyp

Issue 2853013: Added hard_dependency to chrome.gyp to fix buildbot failures. (Closed)
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 'browser/sync/notifier/server_notifier_thread.cc', 1087 'browser/sync/notifier/server_notifier_thread.cc',
1088 'browser/sync/notifier/server_notifier_thread.h', 1088 'browser/sync/notifier/server_notifier_thread.h',
1089 ], 1089 ],
1090 'include_dirs': [ 1090 'include_dirs': [
1091 '..', 1091 '..',
1092 ], 1092 ],
1093 'dependencies': [ 1093 'dependencies': [
1094 'notifier', 1094 'notifier',
1095 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 1095 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
1096 ], 1096 ],
1097 # This target exports a hard dependency because it depends on
1098 # cacheinvalidation (which itself has hard_dependency set).
1099 'hard_dependency': 1,
1097 'export_dependent_settings': [ 1100 'export_dependent_settings': [
1098 'notifier', 1101 'notifier',
1099 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 1102 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
1100 ], 1103 ],
1101 }, 1104 },
1102 { 1105 {
1103 'target_name': 'service', 1106 'target_name': 'service',
1104 'type': '<(library)', 1107 'type': '<(library)',
1105 'msvs_guid': '2DA87614-55C5-4E56-A17E-0CD099786197', 1108 'msvs_guid': '2DA87614-55C5-4E56-A17E-0CD099786197',
1106 'dependencies': [ 1109 'dependencies': [
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
1906 }], # targets 1909 }], # targets
1907 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1910 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1908 ], # 'conditions' 1911 ], # 'conditions'
1909 } 1912 }
1910 1913
1911 # Local Variables: 1914 # Local Variables:
1912 # tab-width:2 1915 # tab-width:2
1913 # indent-tabs-mode:nil 1916 # indent-tabs-mode:nil
1914 # End: 1917 # End:
1915 # vim: set expandtab tabstop=2 shiftwidth=2: 1918 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698