| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'linux_link_kerberos%': 0, | 8 'linux_link_kerberos%': 0, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['chromeos==1 or embedded==1 or OS=="ios"', { | 10 ['chromeos==1 or embedded==1 or OS=="ios"', { |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 }], | 276 }], |
| 277 [ 'disable_ftp_support==1', { | 277 [ 'disable_ftp_support==1', { |
| 278 'sources/': [ | 278 'sources/': [ |
| 279 ['exclude', '^ftp/'], | 279 ['exclude', '^ftp/'], |
| 280 ], | 280 ], |
| 281 'sources!': [ | 281 'sources!': [ |
| 282 'url_request/url_request_ftp_job_unittest.cc', | 282 'url_request/url_request_ftp_job_unittest.cc', |
| 283 ], | 283 ], |
| 284 }, | 284 }, |
| 285 ], | 285 ], |
| 286 [ 'enable_bidirectional_stream!=1', { |
| 287 'sources!': [ |
| 288 'http/bidirectional_stream_unittest.cc', |
| 289 ], |
| 290 }, |
| 291 ], |
| 286 [ 'enable_built_in_dns!=1', { | 292 [ 'enable_built_in_dns!=1', { |
| 287 'sources!': [ | 293 'sources!': [ |
| 288 'dns/address_sorter_posix_unittest.cc', | 294 'dns/address_sorter_posix_unittest.cc', |
| 289 'dns/address_sorter_unittest.cc', | 295 'dns/address_sorter_unittest.cc', |
| 290 ], | 296 ], |
| 291 }, | 297 }, |
| 292 ], | 298 ], |
| 293 [ 'use_v8_in_net==1', { | 299 [ 'use_v8_in_net==1', { |
| 294 'dependencies': [ | 300 'dependencies': [ |
| 295 'net_with_v8', | 301 'net_with_v8', |
| (...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 '../build/isolate.gypi', | 1635 '../build/isolate.gypi', |
| 1630 ], | 1636 ], |
| 1631 'sources': [ | 1637 'sources': [ |
| 1632 'net_unittests.isolate', | 1638 'net_unittests.isolate', |
| 1633 ], | 1639 ], |
| 1634 }, | 1640 }, |
| 1635 ], | 1641 ], |
| 1636 }], | 1642 }], |
| 1637 ], | 1643 ], |
| 1638 } | 1644 } |
| OLD | NEW |