Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Side by Side Diff: net/BUILD.gn

Issue 1125333005: RFC 2459 name comparison. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ios copy_test_data Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 if (is_ios) { 1560 if (is_ios) {
1561 # TODO(GYP) 1561 # TODO(GYP)
1562 # 'actions': [ 1562 # 'actions': [
1563 # { 1563 # {
1564 # 'action_name': 'copy_test_data', 1564 # 'action_name': 'copy_test_data',
1565 # 'variables': { 1565 # 'variables': {
1566 # 'test_data_files': [ 1566 # 'test_data_files': [
1567 # 'data/ssl/certificates/', 1567 # 'data/ssl/certificates/',
1568 # 'data/test.html', 1568 # 'data/test.html',
1569 # 'data/url_request_unittest/', 1569 # 'data/url_request_unittest/',
1570 # 'data/verify_name_match_unittest/names/',
1570 # ], 1571 # ],
1571 # 'test_data_prefix': 'net', 1572 # 'test_data_prefix': 'net',
1572 # }, 1573 # },
1573 # 'includes': [ '../build/copy_test_data_ios.gypi' ], 1574 # 'includes': [ '../build/copy_test_data_ios.gypi' ],
1574 # }, 1575 # },
1575 # ], 1576 # ],
1576 sources -= [ 1577 sources -= [
1577 # TODO(droger): The following tests are disabled because the 1578 # TODO(droger): The following tests are disabled because the
1578 # implementation is missing or incomplete. 1579 # implementation is missing or incomplete.
1579 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. 1580 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 if (enable_websockets) { 1674 if (enable_websockets) {
1674 sources += [ "websockets/websocket_frame_perftest.cc" ] 1675 sources += [ "websockets/websocket_frame_perftest.cc" ]
1675 } 1676 }
1676 1677
1677 if (use_v8_in_net) { 1678 if (use_v8_in_net) {
1678 deps += [ ":net_with_v8" ] 1679 deps += [ ":net_with_v8" ]
1679 } else { 1680 } else {
1680 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1681 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1681 } 1682 }
1682 } 1683 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698