| 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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1573 # TODO(GYP) | 1573 # TODO(GYP) |
| 1574 # 'actions': [ | 1574 # 'actions': [ |
| 1575 # { | 1575 # { |
| 1576 # 'action_name': 'copy_test_data', | 1576 # 'action_name': 'copy_test_data', |
| 1577 # 'variables': { | 1577 # 'variables': { |
| 1578 # 'test_data_files': [ | 1578 # 'test_data_files': [ |
| 1579 # 'data/ssl/certificates/', | 1579 # 'data/ssl/certificates/', |
| 1580 # 'data/test.html', | 1580 # 'data/test.html', |
| 1581 # 'data/url_request_unittest/', | 1581 # 'data/url_request_unittest/', |
| 1582 # 'data/verify_name_match_unittest/names/', | 1582 # 'data/verify_name_match_unittest/names/', |
| 1583 # 'data/parse_certificate_unittest/', |
| 1583 # ], | 1584 # ], |
| 1584 # 'test_data_prefix': 'net', | 1585 # 'test_data_prefix': 'net', |
| 1585 # }, | 1586 # }, |
| 1586 # 'includes': [ '../build/copy_test_data_ios.gypi' ], | 1587 # 'includes': [ '../build/copy_test_data_ios.gypi' ], |
| 1587 # }, | 1588 # }, |
| 1588 # ], | 1589 # ], |
| 1589 sources -= [ | 1590 sources -= [ |
| 1590 # TODO(droger): The following tests are disabled because the | 1591 # TODO(droger): The following tests are disabled because the |
| 1591 # implementation is missing or incomplete. | 1592 # implementation is missing or incomplete. |
| 1592 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. | 1593 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 if (enable_websockets) { | 1687 if (enable_websockets) { |
| 1687 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1688 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1688 } | 1689 } |
| 1689 | 1690 |
| 1690 if (use_v8_in_net) { | 1691 if (use_v8_in_net) { |
| 1691 deps += [ ":net_with_v8" ] | 1692 deps += [ ":net_with_v8" ] |
| 1692 } else { | 1693 } else { |
| 1693 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1694 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1694 } | 1695 } |
| 1695 } | 1696 } |
| OLD | NEW |