| 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 3501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3512 ], | 3512 ], |
| 3513 }], # OS!="mac" | 3513 }], # OS!="mac" |
| 3514 ['OS=="win"', | 3514 ['OS=="win"', |
| 3515 { 'targets': [ | 3515 { 'targets': [ |
| 3516 { | 3516 { |
| 3517 # TODO(sgk): remove this when we change the buildbots to | 3517 # TODO(sgk): remove this when we change the buildbots to |
| 3518 # use the generated build\all.sln file to build the world. | 3518 # use the generated build\all.sln file to build the world. |
| 3519 'target_name': 'pull_in_all', | 3519 'target_name': 'pull_in_all', |
| 3520 'type': 'none', | 3520 'type': 'none', |
| 3521 'dependencies': [ | 3521 'dependencies': [ |
| 3522 'app/locales.gyp:*', | 3522 'app/locales/locales.gyp:*', |
| 3523 'installer/installer.gyp:*', | 3523 'installer/installer.gyp:*', |
| 3524 '../app/app.gyp:*', | 3524 '../app/app.gyp:*', |
| 3525 '../base/base.gyp:*', | 3525 '../base/base.gyp:*', |
| 3526 '../media/media.gyp:*', | 3526 '../media/media.gyp:*', |
| 3527 '../net/net.gyp:*', | 3527 '../net/net.gyp:*', |
| 3528 '../printing/printing.gyp:*', | 3528 '../printing/printing.gyp:*', |
| 3529 '../sdch/sdch.gyp:*', | 3529 '../sdch/sdch.gyp:*', |
| 3530 '../skia/skia.gyp:*', | 3530 '../skia/skia.gyp:*', |
| 3531 '../testing/gtest.gyp:*', | 3531 '../testing/gtest.gyp:*', |
| 3532 '../third_party/bsdiff/bsdiff.gyp:*', | 3532 '../third_party/bsdiff/bsdiff.gyp:*', |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4185 # Use outputs of this action as inputs for the main target build. | 4185 # Use outputs of this action as inputs for the main target build. |
| 4186 # Seems as a misnomer but makes this happy on Linux (scons). | 4186 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4187 'process_outputs_as_sources': 1, | 4187 'process_outputs_as_sources': 1, |
| 4188 }, | 4188 }, |
| 4189 ], # 'actions' | 4189 ], # 'actions' |
| 4190 }, | 4190 }, |
| 4191 ] | 4191 ] |
| 4192 }], | 4192 }], |
| 4193 ], # 'conditions' | 4193 ], # 'conditions' |
| 4194 } | 4194 } |
| OLD | NEW |