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

Side by Side Diff: build/all.gyp

Issue 2137010: Linux: Add libunwind as a dependency of tcmalloc in 64 bit mode. (proposed so... (Closed) Base URL: svn://chrome-svn/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) 2009 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 { 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 ],
86 }], 93 }],
87 ['OS=="win"', { 94 ['OS=="win"', {
88 'conditions': [ 95 'conditions': [
89 ['win_use_allocator_shim==1', { 96 ['win_use_allocator_shim==1', {
90 'dependencies': [ 97 'dependencies': [
91 '../base/allocator/allocator.gyp:*', 98 '../base/allocator/allocator.gyp:*',
92 ], 99 ],
93 }], 100 }],
94 ], 101 ],
95 'dependencies': [ 102 'dependencies': [
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 ], # targets 327 ], # targets
321 }], # "chromeos==1" 328 }], # "chromeos==1"
322 ], # conditions 329 ], # conditions
323 } 330 }
324 331
325 # Local Variables: 332 # Local Variables:
326 # tab-width:2 333 # tab-width:2
327 # indent-tabs-mode:nil 334 # indent-tabs-mode:nil
328 # End: 335 # End:
329 # vim: set expandtab tabstop=2 shiftwidth=2: 336 # 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