| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ['OS=="mac"', { | 64 ['OS=="mac"', { |
| 65 'dependencies': [ | 65 'dependencies': [ |
| 66 '../third_party/ocmock/ocmock.gyp:*', | 66 '../third_party/ocmock/ocmock.gyp:*', |
| 67 ], | 67 ], |
| 68 }], | 68 }], |
| 69 ['OS=="linux"', { | 69 ['OS=="linux"', { |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 '../breakpad/breakpad.gyp:*', | 71 '../breakpad/breakpad.gyp:*', |
| 72 '../courgette/courgette.gyp:*', | 72 '../courgette/courgette.gyp:*', |
| 73 '../sandbox/sandbox.gyp:*', | 73 '../sandbox/sandbox.gyp:*', |
| 74 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', | |
| 75 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', | |
| 76 '../net/third_party/nss/nss.gyp:*', | |
| 77 ], | 74 ], |
| 78 'conditions': [ | 75 'conditions': [ |
| 79 ['branding=="Chrome"', { | 76 ['branding=="Chrome"', { |
| 80 'dependencies': [ | 77 'dependencies': [ |
| 81 '../chrome/installer/installer.gyp:linux_packages_<(channel)', | 78 '../chrome/installer/installer.gyp:linux_packages_<(channel)', |
| 82 ], | 79 ], |
| 83 }], | 80 }], |
| 84 ], | 81 ], |
| 85 }], | 82 }], |
| 83 ['OS=="linux" or OS=="freebsd"', { |
| 84 'dependencies': [ |
| 85 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', |
| 86 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', |
| 87 '../net/third_party/nss/nss.gyp:*', |
| 88 ], |
| 89 }], |
| 86 ['OS=="win"', { | 90 ['OS=="win"', { |
| 87 'conditions': [ | 91 'conditions': [ |
| 88 ['win_use_allocator_shim==1', { | 92 ['win_use_allocator_shim==1', { |
| 89 'dependencies': [ | 93 'dependencies': [ |
| 90 '../base/allocator/allocator.gyp:*', | 94 '../base/allocator/allocator.gyp:*', |
| 91 ], | 95 ], |
| 92 }], | 96 }], |
| 93 ], | 97 ], |
| 94 'dependencies': [ | 98 'dependencies': [ |
| 95 '../breakpad/breakpad.gyp:*', | 99 '../breakpad/breakpad.gyp:*', |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 ], # targets | 233 ], # targets |
| 230 }], # OS="win" | 234 }], # OS="win" |
| 231 ], # conditions | 235 ], # conditions |
| 232 } | 236 } |
| 233 | 237 |
| 234 # Local Variables: | 238 # Local Variables: |
| 235 # tab-width:2 | 239 # tab-width:2 |
| 236 # indent-tabs-mode:nil | 240 # indent-tabs-mode:nil |
| 237 # End: | 241 # End: |
| 238 # vim: set expandtab tabstop=2 shiftwidth=2: | 242 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |