| OLD | NEW |
| 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 { | 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': [ |
| 12 '../app/app.gyp:*', | 12 '../app/app.gyp:*', |
| 13 '../base/base.gyp:*', | 13 '../base/base.gyp:*', |
| 14 '../chrome/browser/sync/tools/sync_tools.gyp:*', | 14 '../chrome/browser/sync/tools/sync_tools.gyp:*', |
| 15 '../chrome/chrome.gyp:*', | 15 '../chrome/chrome.gyp:*', |
| 16 '../gfx/gfx.gyp:*', | 16 '../gfx/gfx.gyp:*', |
| 17 '../gpu/gpu.gyp:*', | 17 '../gpu/gpu.gyp:*', |
| 18 '../gpu/demos/demos.gyp:*', | 18 '../gpu/demos/demos.gyp:*', |
| 19 '../ipc/ipc.gyp:*', | 19 '../ipc/ipc.gyp:*', |
| 20 '../jingle/jingle.gyp:*', | 20 '../jingle/jingle.gyp:*', |
| 21 '../media/media.gyp:*', | 21 '../media/media.gyp:*', |
| 22 '../net/net.gyp:*', | 22 '../net/net.gyp:*', |
| 23 '../net/third_party/nss/ssl.gyp:*', | |
| 24 '../printing/printing.gyp:*', | 23 '../printing/printing.gyp:*', |
| 25 '../sdch/sdch.gyp:*', | 24 '../sdch/sdch.gyp:*', |
| 26 '../skia/skia.gyp:*', | 25 '../skia/skia.gyp:*', |
| 27 '../testing/gmock.gyp:*', | 26 '../testing/gmock.gyp:*', |
| 28 '../testing/gtest.gyp:*', | 27 '../testing/gtest.gyp:*', |
| 29 '../third_party/bzip2/bzip2.gyp:*', | 28 '../third_party/bzip2/bzip2.gyp:*', |
| 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*', | 29 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*', |
| 31 '../third_party/cld/cld.gyp:*', | 30 '../third_party/cld/cld.gyp:*', |
| 32 '../third_party/codesighs/codesighs.gyp:*', | 31 '../third_party/codesighs/codesighs.gyp:*', |
| 33 '../third_party/ffmpeg/ffmpeg.gyp:*', | 32 '../third_party/ffmpeg/ffmpeg.gyp:*', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ['chromeos==1', { | 126 ['chromeos==1', { |
| 128 'dependencies': [ | 127 'dependencies': [ |
| 129 '../chrome/browser/chromeos/input_method/candidate_window.gyp:*', | 128 '../chrome/browser/chromeos/input_method/candidate_window.gyp:*', |
| 130 ], | 129 ], |
| 131 }], | 130 }], |
| 132 ['remoting==1', { | 131 ['remoting==1', { |
| 133 'dependencies': [ | 132 'dependencies': [ |
| 134 '../remoting/remoting.gyp:*', | 133 '../remoting/remoting.gyp:*', |
| 135 ], | 134 ], |
| 136 }], | 135 }], |
| 136 ['use_openssl!=1', { |
| 137 'dependencies': [ |
| 138 '../net/third_party/nss/ssl.gyp:*', |
| 139 ], |
| 140 }], |
| 137 ], | 141 ], |
| 138 }, | 142 }, |
| 139 ], | 143 ], |
| 140 'conditions': [ | 144 'conditions': [ |
| 141 ['OS=="mac"', { | 145 ['OS=="mac"', { |
| 142 'targets': [ | 146 'targets': [ |
| 143 { | 147 { |
| 144 # Target to build everything plus the dmg. We don't put the dmg | 148 # Target to build everything plus the dmg. We don't put the dmg |
| 145 # in the All target because developers really don't need it. | 149 # in the All target because developers really don't need it. |
| 146 'target_name': 'all_and_dmg', | 150 'target_name': 'all_and_dmg', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 ], # targets | 366 ], # targets |
| 363 }], # "chromeos==1" | 367 }], # "chromeos==1" |
| 364 ], # conditions | 368 ], # conditions |
| 365 } | 369 } |
| 366 | 370 |
| 367 # Local Variables: | 371 # Local Variables: |
| 368 # tab-width:2 | 372 # tab-width:2 |
| 369 # indent-tabs-mode:nil | 373 # indent-tabs-mode:nil |
| 370 # End: | 374 # End: |
| 371 # vim: set expandtab tabstop=2 shiftwidth=2: | 375 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |