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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1548 ] | 1548 ] |
1549 } | 1549 } |
1550 | 1550 |
1551 if (is_ios) { | 1551 if (is_ios) { |
1552 # TODO(GYP) | 1552 # TODO(GYP) |
1553 # 'actions': [ | 1553 # 'actions': [ |
1554 # { | 1554 # { |
1555 # 'action_name': 'copy_test_data', | 1555 # 'action_name': 'copy_test_data', |
1556 # 'variables': { | 1556 # 'variables': { |
1557 # 'test_data_files': [ | 1557 # 'test_data_files': [ |
| 1558 # 'data/name_constraints_unittest/', |
1558 # 'data/ssl/certificates/', | 1559 # 'data/ssl/certificates/', |
1559 # 'data/test.html', | 1560 # 'data/test.html', |
1560 # 'data/url_request_unittest/', | 1561 # 'data/url_request_unittest/', |
1561 # 'data/verify_name_match_unittest/names/', | 1562 # 'data/verify_name_match_unittest/names/', |
1562 # 'data/parse_certificate_unittest/', | 1563 # 'data/parse_certificate_unittest/', |
1563 # ], | 1564 # ], |
1564 # 'test_data_prefix': 'net', | 1565 # 'test_data_prefix': 'net', |
1565 # }, | 1566 # }, |
1566 # 'includes': [ '../build/copy_test_data_ios.gypi' ], | 1567 # 'includes': [ '../build/copy_test_data_ios.gypi' ], |
1567 # }, | 1568 # }, |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1668 if (enable_websockets) { | 1669 if (enable_websockets) { |
1669 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1670 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1670 } | 1671 } |
1671 | 1672 |
1672 if (use_v8_in_net) { | 1673 if (use_v8_in_net) { |
1673 deps += [ ":net_with_v8" ] | 1674 deps += [ ":net_with_v8" ] |
1674 } else { | 1675 } else { |
1675 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1676 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1676 } | 1677 } |
1677 } | 1678 } |
OLD | NEW |