OLD | NEW |
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 '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, |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ], | 78 ], |
79 'conditions': [ | 79 'conditions': [ |
80 ['branding=="Chrome"', { | 80 ['branding=="Chrome"', { |
81 'dependencies': [ | 81 'dependencies': [ |
82 '../chrome/installer/installer.gyp:linux_packages_<(channel)', | 82 '../chrome/installer/installer.gyp:linux_packages_<(channel)', |
83 ], | 83 ], |
84 }], | 84 }], |
85 ], | 85 ], |
86 }], | 86 }], |
87 ['OS=="win"', { | 87 ['OS=="win"', { |
| 88 'conditions': [ |
| 89 ['win_use_allocator_shim==1', { |
| 90 'dependencies': [ |
| 91 '../base/allocator/allocator.gyp:*', |
| 92 ], |
| 93 }], |
| 94 ], |
88 'dependencies': [ | 95 'dependencies': [ |
89 '../base/allocator/allocator.gyp:*', | |
90 '../breakpad/breakpad.gyp:*', | 96 '../breakpad/breakpad.gyp:*', |
91 '../chrome/app/locales/locales.gyp:*', | 97 '../chrome/app/locales/locales.gyp:*', |
92 '../courgette/courgette.gyp:*', | 98 '../courgette/courgette.gyp:*', |
93 '../gears/gears.gyp:*', | 99 '../gears/gears.gyp:*', |
94 '../rlz/rlz.gyp:*', | 100 '../rlz/rlz.gyp:*', |
95 '../sandbox/sandbox.gyp:*', | 101 '../sandbox/sandbox.gyp:*', |
96 '../third_party/bsdiff/bsdiff.gyp:*', | 102 '../third_party/bsdiff/bsdiff.gyp:*', |
97 '../third_party/bspatch/bspatch.gyp:*', | 103 '../third_party/bspatch/bspatch.gyp:*', |
98 '../third_party/cld/cld.gyp:*', | 104 '../third_party/cld/cld.gyp:*', |
99 '../tools/memory_watcher/memory_watcher.gyp:*', | 105 '../tools/memory_watcher/memory_watcher.gyp:*', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 ], # targets | 227 ], # targets |
222 }], # OS="win" | 228 }], # OS="win" |
223 ], # conditions | 229 ], # conditions |
224 } | 230 } |
225 | 231 |
226 # Local Variables: | 232 # Local Variables: |
227 # tab-width:2 | 233 # tab-width:2 |
228 # indent-tabs-mode:nil | 234 # indent-tabs-mode:nil |
229 # End: | 235 # End: |
230 # vim: set expandtab tabstop=2 shiftwidth=2: | 236 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |