| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 '../courgette/courgette.gyp:*', | 133 '../courgette/courgette.gyp:*', |
| 134 '../dbus/dbus.gyp:*', | 134 '../dbus/dbus.gyp:*', |
| 135 '../sandbox/sandbox.gyp:*', | 135 '../sandbox/sandbox.gyp:*', |
| 136 ], | 136 ], |
| 137 'conditions': [ | 137 'conditions': [ |
| 138 ['branding=="Chrome"', { | 138 ['branding=="Chrome"', { |
| 139 'dependencies': [ | 139 'dependencies': [ |
| 140 '../chrome/chrome.gyp:linux_packages_<(channel)', | 140 '../chrome/chrome.gyp:linux_packages_<(channel)', |
| 141 ], | 141 ], |
| 142 }], | 142 }], |
| 143 ['chromeos==0', { | |
| 144 'dependencies': [ | |
| 145 '../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:*', | |
| 146 '../third_party/libmtp/libmtp.gyp:*', | |
| 147 '../third_party/mtpd/mtpd.gyp:*', | |
| 148 ], | |
| 149 }], | |
| 150 ['enable_ipc_fuzzer==1', { | 143 ['enable_ipc_fuzzer==1', { |
| 151 'dependencies': [ | 144 'dependencies': [ |
| 152 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | 145 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', |
| 153 ], | 146 ], |
| 154 }], | 147 }], |
| 155 ], | 148 ], |
| 156 }], | 149 }], |
| 157 ['use_x11==1', { | 150 ['use_x11==1', { |
| 158 'dependencies': [ | 151 'dependencies': [ |
| 159 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', | 152 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', |
| (...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 # http://crbug.com/157234 | 1228 # http://crbug.com/157234 |
| 1236 #'../chrome/chrome.gyp:sync_integration_tests_run', | 1229 #'../chrome/chrome.gyp:sync_integration_tests_run', |
| 1237 '../chrome/chrome.gyp:unit_tests_run', | 1230 '../chrome/chrome.gyp:unit_tests_run', |
| 1238 '../net/net.gyp:net_unittests_run', | 1231 '../net/net.gyp:net_unittests_run', |
| 1239 ], | 1232 ], |
| 1240 }, # target_name: chromium_swarm_tests | 1233 }, # target_name: chromium_swarm_tests |
| 1241 ], | 1234 ], |
| 1242 }], | 1235 }], |
| 1243 ], # conditions | 1236 ], # conditions |
| 1244 } | 1237 } |
| OLD | NEW |