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