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

Side by Side Diff: build/all.gyp

Issue 2107016: Revert 47897 - Linux: Add libunwind as a dependency of tcmalloc in 64 bit mod... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 7 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 | « base/allocator/allocator.gyp ('k') | 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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
11 'dependencies': [ 11 'dependencies': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 ], 76 ],
77 }], 77 }],
78 ], 78 ],
79 }], 79 }],
80 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 80 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
81 'dependencies': [ 81 'dependencies': [
82 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', 82 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*',
83 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', 83 '../tools/xdisplaycheck/xdisplaycheck.gyp:*',
84 '../net/third_party/nss/nss.gyp:*', 84 '../net/third_party/nss/nss.gyp:*',
85 ], 85 ],
86 'conditions': [
87 ['target_arch=="x64"', {
88 'dependencies': [
89 '../third_party/libunwind/libunwind.gyp:*',
90 ],
91 }],
92 ],
93 }], 86 }],
94 ['OS=="win"', { 87 ['OS=="win"', {
95 'conditions': [ 88 'conditions': [
96 ['win_use_allocator_shim==1', { 89 ['win_use_allocator_shim==1', {
97 'dependencies': [ 90 'dependencies': [
98 '../base/allocator/allocator.gyp:*', 91 '../base/allocator/allocator.gyp:*',
99 ], 92 ],
100 }], 93 }],
101 ], 94 ],
102 'dependencies': [ 95 'dependencies': [
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 ], # targets 320 ], # targets
328 }], # "chromeos==1" 321 }], # "chromeos==1"
329 ], # conditions 322 ], # conditions
330 } 323 }
331 324
332 # Local Variables: 325 # Local Variables:
333 # tab-width:2 326 # tab-width:2
334 # indent-tabs-mode:nil 327 # indent-tabs-mode:nil
335 # End: 328 # End:
336 # vim: set expandtab tabstop=2 shiftwidth=2: 329 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/allocator/allocator.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698