| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1615 if (is_ios) { | 1615 if (is_ios) { |
| 1616 # TODO(GYP) | 1616 # TODO(GYP) |
| 1617 # 'actions': [ | 1617 # 'actions': [ |
| 1618 # { | 1618 # { |
| 1619 # 'action_name': 'copy_test_data', | 1619 # 'action_name': 'copy_test_data', |
| 1620 # 'variables': { | 1620 # 'variables': { |
| 1621 # 'test_data_files': [ | 1621 # 'test_data_files': [ |
| 1622 # 'data/certificate_policies_unittest/', | 1622 # 'data/certificate_policies_unittest/', |
| 1623 # 'data/name_constraints_unittest/', | 1623 # 'data/name_constraints_unittest/', |
| 1624 # 'data/parse_certificate_unittest/', | 1624 # 'data/parse_certificate_unittest/', |
| 1625 # 'data/parse_ocsp_unittest/', |
| 1625 # 'data/ssl/certificates/', | 1626 # 'data/ssl/certificates/', |
| 1626 # 'data/test.html', | 1627 # 'data/test.html', |
| 1627 # 'data/url_request_unittest/', | 1628 # 'data/url_request_unittest/', |
| 1628 # 'data/verify_certificate_chain_unittest/', | 1629 # 'data/verify_certificate_chain_unittest/', |
| 1629 # 'data/verify_name_match_unittest/names/', | 1630 # 'data/verify_name_match_unittest/names/', |
| 1630 # ], | 1631 # ], |
| 1631 # 'test_data_prefix': 'net', | 1632 # 'test_data_prefix': 'net', |
| 1632 # }, | 1633 # }, |
| 1633 # 'includes': [ '../build/copy_test_data_ios.gypi' ], | 1634 # 'includes': [ '../build/copy_test_data_ios.gypi' ], |
| 1634 # }, | 1635 # }, |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1739 } else { | 1740 } else { |
| 1740 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1741 } | 1742 } |
| 1742 } | 1743 } |
| 1743 | 1744 |
| 1744 buildflag_header("features") { | 1745 buildflag_header("features") { |
| 1745 header = "net_features.h" | 1746 header = "net_features.h" |
| 1746 | 1747 |
| 1747 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1748 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
| 1748 } | 1749 } |
| OLD | NEW |