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