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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1558 ] | 1558 ] |
1559 } | 1559 } |
1560 | 1560 |
1561 if (is_ios) { | 1561 if (is_ios) { |
1562 # TODO(GYP) | 1562 # TODO(GYP) |
1563 # 'actions': [ | 1563 # 'actions': [ |
1564 # { | 1564 # { |
1565 # 'action_name': 'copy_test_data', | 1565 # 'action_name': 'copy_test_data', |
1566 # 'variables': { | 1566 # 'variables': { |
1567 # 'test_data_files': [ | 1567 # 'test_data_files': [ |
| 1568 # 'data/name_constraints_unittest/', |
1568 # 'data/ssl/certificates/', | 1569 # 'data/ssl/certificates/', |
1569 # 'data/test.html', | 1570 # 'data/test.html', |
1570 # 'data/url_request_unittest/', | 1571 # 'data/url_request_unittest/', |
1571 # 'data/verify_name_match_unittest/names/', | 1572 # 'data/verify_name_match_unittest/names/', |
1572 # 'data/parse_certificate_unittest/', | 1573 # 'data/parse_certificate_unittest/', |
1573 # ], | 1574 # ], |
1574 # 'test_data_prefix': 'net', | 1575 # 'test_data_prefix': 'net', |
1575 # }, | 1576 # }, |
1576 # 'includes': [ '../build/copy_test_data_ios.gypi' ], | 1577 # 'includes': [ '../build/copy_test_data_ios.gypi' ], |
1577 # }, | 1578 # }, |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1669 if (enable_websockets) { | 1670 if (enable_websockets) { |
1670 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1671 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1671 } | 1672 } |
1672 | 1673 |
1673 if (use_v8_in_net) { | 1674 if (use_v8_in_net) { |
1674 deps += [ ":net_with_v8" ] | 1675 deps += [ ":net_with_v8" ] |
1675 } else { | 1676 } else { |
1676 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1677 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1677 } | 1678 } |
1678 } | 1679 } |
OLD | NEW |