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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 '../chrome/chrome.gyp:linux_packages_<(channel)', | 140 '../chrome/chrome.gyp:linux_packages_<(channel)', |
141 ], | 141 ], |
142 }], | 142 }], |
143 ['enable_ipc_fuzzer==1', { | 143 ['enable_ipc_fuzzer==1', { |
144 'dependencies': [ | 144 'dependencies': [ |
145 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | 145 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', |
146 ], | 146 ], |
147 }], | 147 }], |
148 ], | 148 ], |
149 }], | 149 }], |
| 150 ['chromecast==1', { |
| 151 'dependencies': [ |
| 152 '../chromecast/chromecast.gyp:*', |
| 153 ], |
| 154 }], |
150 ['use_x11==1', { | 155 ['use_x11==1', { |
151 'dependencies': [ | 156 'dependencies': [ |
152 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', | 157 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', |
153 ], | 158 ], |
154 }], | 159 }], |
155 ['OS=="win"', { | 160 ['OS=="win"', { |
156 'conditions': [ | 161 'conditions': [ |
157 ['win_use_allocator_shim==1', { | 162 ['win_use_allocator_shim==1', { |
158 'dependencies': [ | 163 'dependencies': [ |
159 '../base/allocator/allocator.gyp:*', | 164 '../base/allocator/allocator.gyp:*', |
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 # http://crbug.com/157234 | 1241 # http://crbug.com/157234 |
1237 #'../chrome/chrome.gyp:sync_integration_tests_run', | 1242 #'../chrome/chrome.gyp:sync_integration_tests_run', |
1238 '../chrome/chrome.gyp:unit_tests_run', | 1243 '../chrome/chrome.gyp:unit_tests_run', |
1239 '../net/net.gyp:net_unittests_run', | 1244 '../net/net.gyp:net_unittests_run', |
1240 ], | 1245 ], |
1241 }, # target_name: chromium_swarm_tests | 1246 }, # target_name: chromium_swarm_tests |
1242 ], | 1247 ], |
1243 }], | 1248 }], |
1244 ], # conditions | 1249 ], # conditions |
1245 } | 1250 } |
OLD | NEW |