| 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 3152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3163 ], | 3163 ], |
| 3164 'conditions': [ | 3164 'conditions': [ |
| 3165 ['OS=="linux"', { | 3165 ['OS=="linux"', { |
| 3166 'dependencies': [ | 3166 'dependencies': [ |
| 3167 '../build/linux/system.gyp:gtk', | 3167 '../build/linux/system.gyp:gtk', |
| 3168 ], | 3168 ], |
| 3169 'sources!': [ | 3169 'sources!': [ |
| 3170 # TODO(port) | 3170 # TODO(port) |
| 3171 'browser/crash_recovery_uitest.cc', | 3171 'browser/crash_recovery_uitest.cc', |
| 3172 'browser/login_prompt_uitest.cc', | 3172 'browser/login_prompt_uitest.cc', |
| 3173 'browser/metrics/metrics_service_uitest.cc', |
| 3173 'browser/renderer_host/resource_dispatcher_host_uitest.cc', | 3174 'browser/renderer_host/resource_dispatcher_host_uitest.cc', |
| 3174 'test/reliability/page_load_test.cc', | 3175 'test/reliability/page_load_test.cc', |
| 3175 'test/ui/layout_plugin_uitest.cc', | 3176 'test/ui/layout_plugin_uitest.cc', |
| 3176 ], | 3177 ], |
| 3177 }], | 3178 }], |
| 3178 ['OS=="linux" and toolkit_views==1', { | 3179 ['OS=="linux" and toolkit_views==1', { |
| 3179 'dependencies': [ | 3180 'dependencies': [ |
| 3180 '../views/views.gyp:views', | 3181 '../views/views.gyp:views', |
| 3181 ], | 3182 ], |
| 3182 }], | 3183 }], |
| (...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4735 # Use outputs of this action as inputs for the main target build. | 4736 # Use outputs of this action as inputs for the main target build. |
| 4736 # Seems as a misnomer but makes this happy on Linux (scons). | 4737 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4737 'process_outputs_as_sources': 1, | 4738 'process_outputs_as_sources': 1, |
| 4738 }, | 4739 }, |
| 4739 ], # 'actions' | 4740 ], # 'actions' |
| 4740 }, | 4741 }, |
| 4741 ] | 4742 ] |
| 4742 }], | 4743 }], |
| 4743 ], # 'conditions' | 4744 ], # 'conditions' |
| 4744 } | 4745 } |
| OLD | NEW |