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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 ] | 549 ] |
550 sources += [ | 550 sources += [ |
551 "base/net_string_util_icu_alternatives_android.cc", | 551 "base/net_string_util_icu_alternatives_android.cc", |
552 "base/net_string_util_icu_alternatives_android.h", | 552 "base/net_string_util_icu_alternatives_android.h", |
553 ] | 553 ] |
554 } | 554 } |
555 } | 555 } |
556 | 556 |
557 grit("net_resources") { | 557 grit("net_resources") { |
558 source = "base/net_resources.grd" | 558 source = "base/net_resources.grd" |
| 559 use_qualified_include = true |
559 outputs = [ | 560 outputs = [ |
560 "grit/net_resources.h", | 561 "grit/net_resources.h", |
561 "net_resources.pak", | 562 "net_resources.pak", |
562 "net_resources.rc", | 563 "net_resources.rc", |
563 ] | 564 ] |
564 } | 565 } |
565 | 566 |
566 static_library("http_server") { | 567 static_library("http_server") { |
567 sources = [ | 568 sources = [ |
568 "server/http_connection.cc", | 569 "server/http_connection.cc", |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 sources = [ "quic/quic_server_bin.cc" ] | 1355 sources = [ "quic/quic_server_bin.cc" ] |
1355 deps = [ | 1356 deps = [ |
1356 ":quic_tools", | 1357 ":quic_tools", |
1357 ":net", | 1358 ":net", |
1358 "//base", | 1359 "//base", |
1359 "//third_party/boringssl", | 1360 "//third_party/boringssl", |
1360 ] | 1361 ] |
1361 } | 1362 } |
1362 | 1363 |
1363 } # !is_android | 1364 } # !is_android |
OLD | NEW |