| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 4113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4124 ] | 4124 ] |
| 4125 }], | 4125 }], |
| 4126 ['OS=="win"', | 4126 ['OS=="win"', |
| 4127 { 'targets': [ | 4127 { 'targets': [ |
| 4128 { | 4128 { |
| 4129 # TODO(sgk): remove this when we change the buildbots to | 4129 # TODO(sgk): remove this when we change the buildbots to |
| 4130 # use the generated build\all.sln file to build the world. | 4130 # use the generated build\all.sln file to build the world. |
| 4131 'target_name': 'pull_in_all', | 4131 'target_name': 'pull_in_all', |
| 4132 'type': 'none', | 4132 'type': 'none', |
| 4133 'dependencies': [ | 4133 'dependencies': [ |
| 4134 'installer/mini_installer.gyp:*', |
| 4134 'installer/installer.gyp:*', | 4135 'installer/installer.gyp:*', |
| 4135 '../app/app.gyp:*', | 4136 '../app/app.gyp:*', |
| 4136 '../base/base.gyp:*', | 4137 '../base/base.gyp:*', |
| 4137 '../media/media.gyp:*', | 4138 '../media/media.gyp:*', |
| 4138 '../net/net.gyp:*', | 4139 '../net/net.gyp:*', |
| 4139 '../printing/printing.gyp:*', | 4140 '../printing/printing.gyp:*', |
| 4140 '../rlz/rlz.gyp:*', | 4141 '../rlz/rlz.gyp:*', |
| 4141 '../sdch/sdch.gyp:*', | 4142 '../sdch/sdch.gyp:*', |
| 4142 '../skia/skia.gyp:*', | 4143 '../skia/skia.gyp:*', |
| 4143 '../testing/gmock.gyp:*', | 4144 '../testing/gmock.gyp:*', |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4839 # Use outputs of this action as inputs for the main target build. | 4840 # Use outputs of this action as inputs for the main target build. |
| 4840 # Seems as a misnomer but makes this happy on Linux (scons). | 4841 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4841 'process_outputs_as_sources': 1, | 4842 'process_outputs_as_sources': 1, |
| 4842 }, | 4843 }, |
| 4843 ], # 'actions' | 4844 ], # 'actions' |
| 4844 }, | 4845 }, |
| 4845 ] | 4846 ] |
| 4846 }], | 4847 }], |
| 4847 ], # 'conditions' | 4848 ], # 'conditions' |
| 4848 } | 4849 } |
| OLD | NEW |