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 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1582 ] | 1582 ] |
1583 } | 1583 } |
1584 | 1584 |
1585 if (is_ios) { | 1585 if (is_ios) { |
1586 # TODO(GYP) | 1586 # TODO(GYP) |
1587 # 'actions': [ | 1587 # 'actions': [ |
1588 # { | 1588 # { |
1589 # 'action_name': 'copy_test_data', | 1589 # 'action_name': 'copy_test_data', |
1590 # 'variables': { | 1590 # 'variables': { |
1591 # 'test_data_files': [ | 1591 # 'test_data_files': [ |
| 1592 # 'data/name_constraints_unittest/', |
1592 # 'data/ssl/certificates/', | 1593 # 'data/ssl/certificates/', |
1593 # 'data/test.html', | 1594 # 'data/test.html', |
1594 # 'data/url_request_unittest/', | 1595 # 'data/url_request_unittest/', |
1595 # 'data/verify_name_match_unittest/names/', | 1596 # 'data/verify_name_match_unittest/names/', |
1596 # 'data/parse_certificate_unittest/', | 1597 # 'data/parse_certificate_unittest/', |
1597 # ], | 1598 # ], |
1598 # 'test_data_prefix': 'net', | 1599 # 'test_data_prefix': 'net', |
1599 # }, | 1600 # }, |
1600 # 'includes': [ '../build/copy_test_data_ios.gypi' ], | 1601 # 'includes': [ '../build/copy_test_data_ios.gypi' ], |
1601 # }, | 1602 # }, |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1700 if (enable_websockets) { | 1701 if (enable_websockets) { |
1701 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1702 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1702 } | 1703 } |
1703 | 1704 |
1704 if (use_v8_in_net) { | 1705 if (use_v8_in_net) { |
1705 deps += [ ":net_with_v8" ] | 1706 deps += [ ":net_with_v8" ] |
1706 } else { | 1707 } else { |
1707 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1708 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1708 } | 1709 } |
1709 } | 1710 } |
OLD | NEW |