| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 ] | 542 ] |
| 543 sources += [ | 543 sources += [ |
| 544 "base/net_string_util_icu_alternatives_android.cc", | 544 "base/net_string_util_icu_alternatives_android.cc", |
| 545 "base/net_string_util_icu_alternatives_android.h", | 545 "base/net_string_util_icu_alternatives_android.h", |
| 546 ] | 546 ] |
| 547 } | 547 } |
| 548 } | 548 } |
| 549 | 549 |
| 550 grit("net_resources") { | 550 grit("net_resources") { |
| 551 source = "base/net_resources.grd" | 551 source = "base/net_resources.grd" |
| 552 outputs = [ |
| 553 "grit/net_resources.h", |
| 554 "net_resources.pak", |
| 555 "net_resources.rc", |
| 556 ] |
| 552 } | 557 } |
| 553 | 558 |
| 554 static_library("http_server") { | 559 static_library("http_server") { |
| 555 sources = [ | 560 sources = [ |
| 556 "server/http_connection.cc", | 561 "server/http_connection.cc", |
| 557 "server/http_connection.h", | 562 "server/http_connection.h", |
| 558 "server/http_server.cc", | 563 "server/http_server.cc", |
| 559 "server/http_server.h", | 564 "server/http_server.h", |
| 560 "server/http_server_request_info.cc", | 565 "server/http_server_request_info.cc", |
| 561 "server/http_server_request_info.h", | 566 "server/http_server_request_info.h", |
| (...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1332 sources = [ "quic/quic_server_bin.cc" ] | 1337 sources = [ "quic/quic_server_bin.cc" ] |
| 1333 deps = [ | 1338 deps = [ |
| 1334 ":quic_tools", | 1339 ":quic_tools", |
| 1335 ":net", | 1340 ":net", |
| 1336 "//base", | 1341 "//base", |
| 1337 "//third_party/openssl", | 1342 "//third_party/openssl", |
| 1338 ] | 1343 ] |
| 1339 } | 1344 } |
| 1340 | 1345 |
| 1341 } # !is_android | 1346 } # !is_android |
| OLD | NEW |