| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 ['remoting==1', { | 204 ['remoting==1', { |
| 205 'dependencies': [ | 205 'dependencies': [ |
| 206 '../remoting/remoting.gyp:*', | 206 '../remoting/remoting.gyp:*', |
| 207 ], | 207 ], |
| 208 }], | 208 }], |
| 209 ['use_openssl==0', { | 209 ['use_openssl==0', { |
| 210 'dependencies': [ | 210 'dependencies': [ |
| 211 '../net/third_party/nss/ssl.gyp:*', | 211 '../net/third_party/nss/ssl.gyp:*', |
| 212 ], | 212 ], |
| 213 }], | 213 }], |
| 214 ['use_openssl==1', { |
| 215 'dependencies': [ |
| 216 '../third_party/boringssl/boringssl.gyp:*', |
| 217 ], |
| 218 }], |
| 214 ['enable_app_list==1', { | 219 ['enable_app_list==1', { |
| 215 'dependencies': [ | 220 'dependencies': [ |
| 216 '../ui/app_list/app_list.gyp:*', | 221 '../ui/app_list/app_list.gyp:*', |
| 217 ], | 222 ], |
| 218 }], | 223 }], |
| 219 ['OS!="android" and OS!="ios"', { | 224 ['OS!="android" and OS!="ios"', { |
| 220 'dependencies': [ | 225 'dependencies': [ |
| 221 '../google_apis/gcm/gcm.gyp:*', | 226 '../google_apis/gcm/gcm.gyp:*', |
| 222 ], | 227 ], |
| 223 }], | 228 }], |
| (...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 'dependencies': [ | 1259 'dependencies': [ |
| 1255 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1260 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1256 '../ui/views/views.gyp:views', | 1261 '../ui/views/views.gyp:views', |
| 1257 '../ui/views/views.gyp:views_unittests', | 1262 '../ui/views/views.gyp:views_unittests', |
| 1258 ], | 1263 ], |
| 1259 }, # target_name: macviews_builder | 1264 }, # target_name: macviews_builder |
| 1260 ], # targets | 1265 ], # targets |
| 1261 }], # os=='mac' and toolkit_views==1 | 1266 }], # os=='mac' and toolkit_views==1 |
| 1262 ], # conditions | 1267 ], # conditions |
| 1263 } | 1268 } |
| OLD | NEW |