| 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("//url/config.gni") | 8 import("//url/config.gni") |
| 9 | 9 |
| 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "server/http_connection.cc", | 555 "server/http_connection.cc", |
| 556 "server/http_connection.h", | 556 "server/http_connection.h", |
| 557 "server/http_server.cc", | 557 "server/http_server.cc", |
| 558 "server/http_server.h", | 558 "server/http_server.h", |
| 559 "server/http_server_request_info.cc", | 559 "server/http_server_request_info.cc", |
| 560 "server/http_server_request_info.h", | 560 "server/http_server_request_info.h", |
| 561 "server/http_server_response_info.cc", | 561 "server/http_server_response_info.cc", |
| 562 "server/http_server_response_info.h", | 562 "server/http_server_response_info.h", |
| 563 "server/web_socket.cc", | 563 "server/web_socket.cc", |
| 564 "server/web_socket.h", | 564 "server/web_socket.h", |
| 565 "server/web_socket_encoder.cc", |
| 566 "server/web_socket_encoder.h", |
| 565 ] | 567 ] |
| 566 configs += [ | 568 configs += [ |
| 567 "//build/config/compiler:wexit_time_destructors", | 569 "//build/config/compiler:wexit_time_destructors", |
| 568 ":net_win_size_truncation", | 570 ":net_win_size_truncation", |
| 569 ] | 571 ] |
| 570 deps = [ | 572 deps = [ |
| 571 ":net", | 573 ":net", |
| 572 "//base", | 574 "//base", |
| 573 ] | 575 ] |
| 574 } | 576 } |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1233 # cert verification or on iOS (which also uses NSS for certs). | 1235 # cert verification or on iOS (which also uses NSS for certs). |
| 1234 sources -= [ "ocsp/nss_ocsp_unittest.cc" ] | 1236 sources -= [ "ocsp/nss_ocsp_unittest.cc" ] |
| 1235 } | 1237 } |
| 1236 | 1238 |
| 1237 if (!use_openssl_certs) { | 1239 if (!use_openssl_certs) { |
| 1238 sources -= [ "ssl/openssl_client_key_store_unittest.cc" ] | 1240 sources -= [ "ssl/openssl_client_key_store_unittest.cc" ] |
| 1239 } | 1241 } |
| 1240 | 1242 |
| 1241 if (!enable_websockets) { | 1243 if (!enable_websockets) { |
| 1242 sources -= [ | 1244 sources -= [ |
| 1245 "server/http_connection_unittest.cc", |
| 1246 "server/http_server_response_info_unittest.cc", |
| 1247 "server/http_server_unittest.cc", |
| 1248 "server/web_socket_encoder_unittest.cc", |
| 1243 "websockets/websocket_basic_stream_test.cc", | 1249 "websockets/websocket_basic_stream_test.cc", |
| 1244 "websockets/websocket_channel_test.cc", | 1250 "websockets/websocket_channel_test.cc", |
| 1245 "websockets/websocket_deflate_predictor_impl_test.cc", | 1251 "websockets/websocket_deflate_predictor_impl_test.cc", |
| 1246 "websockets/websocket_deflate_stream_test.cc", | 1252 "websockets/websocket_deflate_stream_test.cc", |
| 1247 "websockets/websocket_deflater_test.cc", | 1253 "websockets/websocket_deflater_test.cc", |
| 1248 "websockets/websocket_errors_test.cc", | 1254 "websockets/websocket_errors_test.cc", |
| 1249 "websockets/websocket_extension_parser_test.cc", | 1255 "websockets/websocket_extension_parser_test.cc", |
| 1250 "websockets/websocket_frame_parser_test.cc", | 1256 "websockets/websocket_frame_parser_test.cc", |
| 1251 "websockets/websocket_frame_test.cc", | 1257 "websockets/websocket_frame_test.cc", |
| 1252 "websockets/websocket_handshake_challenge_test.cc", | 1258 "websockets/websocket_handshake_challenge_test.cc", |
| 1253 "websockets/websocket_handshake_stream_create_helper_test.cc", | 1259 "websockets/websocket_handshake_stream_create_helper_test.cc", |
| 1254 "websockets/websocket_inflater_test.cc", | 1260 "websockets/websocket_inflater_test.cc", |
| 1255 "websockets/websocket_stream_test.cc", | 1261 "websockets/websocket_stream_test.cc", |
| 1256 "websockets/websocket_test_util.cc", | 1262 "websockets/websocket_test_util.cc", |
| 1257 "websockets/websocket_test_util.h", | 1263 "websockets/websocket_test_util.h", |
| 1258 ] | 1264 ] |
| 1265 deps -= [ ":http_server" ] |
| 1259 } | 1266 } |
| 1260 | 1267 |
| 1261 if (disable_file_support) { | 1268 if (disable_file_support) { |
| 1262 sources -= [ | 1269 sources -= [ |
| 1263 "base/directory_lister_unittest.cc", | 1270 "base/directory_lister_unittest.cc", |
| 1264 "url_request/url_request_file_job_unittest.cc", | 1271 "url_request/url_request_file_job_unittest.cc", |
| 1265 ] | 1272 ] |
| 1266 } | 1273 } |
| 1267 | 1274 |
| 1268 if (disable_ftp_support) { | 1275 if (disable_ftp_support) { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 "quic/quic_server_bin.cc", | 1396 "quic/quic_server_bin.cc", |
| 1390 ] | 1397 ] |
| 1391 deps = [ | 1398 deps = [ |
| 1392 ":quic_tools", | 1399 ":quic_tools", |
| 1393 ":net", | 1400 ":net", |
| 1394 "//base", | 1401 "//base", |
| 1395 "//third_party/boringssl", | 1402 "//third_party/boringssl", |
| 1396 ] | 1403 ] |
| 1397 } | 1404 } |
| 1398 } # !is_android && !is_win && !is_mac | 1405 } # !is_android && !is_win && !is_mac |
| OLD | NEW |