| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
| 8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
| 9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
| 10 }, | 10 }, |
| (...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 ], # targets | 1119 ], # targets |
| 1120 'conditions': [ | 1120 'conditions': [ |
| 1121 ['branding=="Chrome"', { | 1121 ['branding=="Chrome"', { |
| 1122 'targets': [ | 1122 'targets': [ |
| 1123 { | 1123 { |
| 1124 'target_name': 'chrome_official_builder', | 1124 'target_name': 'chrome_official_builder', |
| 1125 'type': 'none', | 1125 'type': 'none', |
| 1126 'dependencies': [ | 1126 'dependencies': [ |
| 1127 '../base/base.gyp:base_unittests', | 1127 '../base/base.gyp:base_unittests', |
| 1128 '../chrome/chrome.gyp:browser_tests', | 1128 '../chrome/chrome.gyp:browser_tests', |
| 1129 '../chrome/chrome.gyp:sync_integration_tests', |
| 1129 '../chrome/chrome.gyp:crash_service', | 1130 '../chrome/chrome.gyp:crash_service', |
| 1130 '../chrome/chrome.gyp:gcapi_dll', | 1131 '../chrome/chrome.gyp:gcapi_dll', |
| 1131 '../chrome/chrome.gyp:pack_policy_templates', | 1132 '../chrome/chrome.gyp:pack_policy_templates', |
| 1132 '../chrome/installer/mini_installer.gyp:mini_installer', | 1133 '../chrome/installer/mini_installer.gyp:mini_installer', |
| 1133 '../cloud_print/cloud_print.gyp:cloud_print', | 1134 '../cloud_print/cloud_print.gyp:cloud_print', |
| 1134 '../courgette/courgette.gyp:courgette', | 1135 '../courgette/courgette.gyp:courgette', |
| 1135 '../courgette/courgette.gyp:courgette64', | 1136 '../courgette/courgette.gyp:courgette64', |
| 1136 '../ipc/ipc.gyp:ipc_tests', | 1137 '../ipc/ipc.gyp:ipc_tests', |
| 1137 '../media/media.gyp:media_unittests', | 1138 '../media/media.gyp:media_unittests', |
| 1138 '../net/net.gyp:net_unittests_run', | 1139 '../net/net.gyp:net_unittests_run', |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 'dependencies': [ | 1290 'dependencies': [ |
| 1290 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1291 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1291 '../ui/views/views.gyp:views', | 1292 '../ui/views/views.gyp:views', |
| 1292 '../ui/views/views.gyp:views_unittests', | 1293 '../ui/views/views.gyp:views_unittests', |
| 1293 ], | 1294 ], |
| 1294 }, # target_name: macviews_builder | 1295 }, # target_name: macviews_builder |
| 1295 ], # targets | 1296 ], # targets |
| 1296 }], # os=='mac' and toolkit_views==1 | 1297 }], # os=='mac' and toolkit_views==1 |
| 1297 ], # conditions | 1298 ], # conditions |
| 1298 } | 1299 } |
| OLD | NEW |