Chromium Code Reviews| 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'. | 8 # compilation targets to 'All'. |
| 9 'app_targets%': [], | 9 'app_targets%': [], |
| 10 # For Android-specific targets. | 10 # For Android-specific targets. |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 254 ], | 254 ], |
| 255 }], | 255 }], |
| 256 ['use_openssl==0', { | 256 ['use_openssl==0', { |
| 257 'dependencies': [ | 257 'dependencies': [ |
| 258 '../net/third_party/nss/ssl.gyp:*', | 258 '../net/third_party/nss/ssl.gyp:*', |
| 259 ], | 259 ], |
| 260 }], | 260 }], |
| 261 ['use_openssl==1', { | 261 ['use_openssl==1', { |
| 262 'dependencies': [ | 262 'dependencies': [ |
| 263 '../third_party/boringssl/boringssl.gyp:*', | 263 '../third_party/boringssl/boringssl.gyp:*', |
| 264 ], | |
| 265 }], | |
| 266 ['use_openssl==1 and OS!="ios"', { | |
| 267 'dependencies': [ | |
| 264 '../third_party/boringssl/boringssl_tests.gyp:*', | 268 '../third_party/boringssl/boringssl_tests.gyp:*', |
|
davidben
2016/04/11 21:46:26
Hrm. Do these not build at all? I would have thoug
svaldez
2016/04/12 14:36:31
Yeah, we can't just build random executables, and
davidben
2016/04/12 19:45:47
Got it. Yeah, we should redo how these tests get b
| |
| 265 ], | 269 ], |
| 266 }], | 270 }], |
| 267 ['enable_app_list==1', { | 271 ['enable_app_list==1', { |
| 268 'dependencies': [ | 272 'dependencies': [ |
| 269 '../ui/app_list/app_list.gyp:*', | 273 '../ui/app_list/app_list.gyp:*', |
| 270 ], | 274 ], |
| 271 }], | 275 }], |
| 272 ['OS!="android" and OS!="ios"', { | 276 ['OS!="android" and OS!="ios"', { |
| 273 'dependencies': [ | 277 'dependencies': [ |
| 274 '../google_apis/gcm/gcm.gyp:*', | 278 '../google_apis/gcm/gcm.gyp:*', |
| (...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1385 'dependencies': [ | 1389 'dependencies': [ |
| 1386 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1390 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1387 '../ui/views/views.gyp:views', | 1391 '../ui/views/views.gyp:views', |
| 1388 '../ui/views/views.gyp:views_unittests', | 1392 '../ui/views/views.gyp:views_unittests', |
| 1389 ], | 1393 ], |
| 1390 }, # target_name: macviews_builder | 1394 }, # target_name: macviews_builder |
| 1391 ], # targets | 1395 ], # targets |
| 1392 }], # os=='mac' and toolkit_views==1 | 1396 }], # os=='mac' and toolkit_views==1 |
| 1393 ], # conditions | 1397 ], # conditions |
| 1394 } | 1398 } |
| OLD | NEW |