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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 ], | 211 ], |
212 }], | 212 }], |
213 ['use_openssl==0', { | 213 ['use_openssl==0', { |
214 'dependencies': [ | 214 'dependencies': [ |
215 '../net/third_party/nss/ssl.gyp:*', | 215 '../net/third_party/nss/ssl.gyp:*', |
216 ], | 216 ], |
217 }], | 217 }], |
218 ['use_openssl==1', { | 218 ['use_openssl==1', { |
219 'dependencies': [ | 219 'dependencies': [ |
220 '../third_party/boringssl/boringssl.gyp:*', | 220 '../third_party/boringssl/boringssl.gyp:*', |
| 221 '../third_party/boringssl/boringssl_tests.gyp:*', |
221 ], | 222 ], |
222 }], | 223 }], |
223 ['enable_app_list==1', { | 224 ['enable_app_list==1', { |
224 'dependencies': [ | 225 'dependencies': [ |
225 '../ui/app_list/app_list.gyp:*', | 226 '../ui/app_list/app_list.gyp:*', |
226 ], | 227 ], |
227 }], | 228 }], |
228 ['OS!="android" and OS!="ios"', { | 229 ['OS!="android" and OS!="ios"', { |
229 'dependencies': [ | 230 'dependencies': [ |
230 '../google_apis/gcm/gcm.gyp:*', | 231 '../google_apis/gcm/gcm.gyp:*', |
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1281 'dependencies': [ | 1282 'dependencies': [ |
1282 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1283 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1283 '../ui/views/views.gyp:views', | 1284 '../ui/views/views.gyp:views', |
1284 '../ui/views/views.gyp:views_unittests', | 1285 '../ui/views/views.gyp:views_unittests', |
1285 ], | 1286 ], |
1286 }, # target_name: macviews_builder | 1287 }, # target_name: macviews_builder |
1287 ], # targets | 1288 ], # targets |
1288 }], # os=='mac' and toolkit_views==1 | 1289 }], # os=='mac' and toolkit_views==1 |
1289 ], # conditions | 1290 ], # conditions |
1290 } | 1291 } |
OLD | NEW |