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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
193 ['use_aura==1', { | 193 ['use_aura==1', { |
194 'dependencies': [ | 194 'dependencies': [ |
195 '../ui/aura/aura.gyp:*', | 195 '../ui/aura/aura.gyp:*', |
196 ], | 196 ], |
197 }], | 197 }], |
198 ['use_ash==1', { | 198 ['use_ash==1', { |
199 'dependencies': [ | 199 'dependencies': [ |
200 '../ash/ash.gyp:*', | 200 '../ash/ash.gyp:*', |
201 ], | 201 ], |
202 }], | 202 }], |
203 ['chromeos==1', { | |
204 'dependencies': [ | |
205 '../athena/main/athena_main.gyp:*', | |
James Cook
2014/05/07 23:42:45
You might want to wait on this until extensions an
| |
206 ], | |
207 }], | |
203 ['remoting==1', { | 208 ['remoting==1', { |
204 'dependencies': [ | 209 'dependencies': [ |
205 '../remoting/remoting.gyp:*', | 210 '../remoting/remoting.gyp:*', |
206 ], | 211 ], |
207 }], | 212 }], |
208 ['use_openssl==0', { | 213 ['use_openssl==0', { |
209 'dependencies': [ | 214 'dependencies': [ |
210 '../net/third_party/nss/ssl.gyp:*', | 215 '../net/third_party/nss/ssl.gyp:*', |
211 ], | 216 ], |
212 }], | 217 }], |
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1231 # http://crbug.com/157234 | 1236 # http://crbug.com/157234 |
1232 #'../chrome/chrome.gyp:sync_integration_tests_run', | 1237 #'../chrome/chrome.gyp:sync_integration_tests_run', |
1233 '../chrome/chrome.gyp:unit_tests_run', | 1238 '../chrome/chrome.gyp:unit_tests_run', |
1234 '../net/net.gyp:net_unittests_run', | 1239 '../net/net.gyp:net_unittests_run', |
1235 ], | 1240 ], |
1236 }, # target_name: chromium_swarm_tests | 1241 }, # target_name: chromium_swarm_tests |
1237 ], | 1242 ], |
1238 }], | 1243 }], |
1239 ], # conditions | 1244 ], # conditions |
1240 } | 1245 } |
OLD | NEW |