| 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("//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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 ] | 515 ] |
| 516 } | 516 } |
| 517 } | 517 } |
| 518 | 518 |
| 519 grit("net_resources") { | 519 grit("net_resources") { |
| 520 source = "base/net_resources.grd" | 520 source = "base/net_resources.grd" |
| 521 use_qualified_include = true | 521 use_qualified_include = true |
| 522 outputs = [ | 522 outputs = [ |
| 523 "grit/net_resources.h", | 523 "grit/net_resources.h", |
| 524 "net_resources.pak", | 524 "net_resources.pak", |
| 525 "net_resources.rc", | |
| 526 ] | 525 ] |
| 527 } | 526 } |
| 528 | 527 |
| 529 proto_library("net_quic_proto") { | 528 proto_library("net_quic_proto") { |
| 530 visibility = [ "//net" ] # Part of the net component. | 529 visibility = [ "//net" ] # Part of the net component. |
| 531 | 530 |
| 532 sources = [ | 531 sources = [ |
| 533 "quic/proto/cached_network_parameters.proto", | 532 "quic/proto/cached_network_parameters.proto", |
| 534 "quic/proto/source_address_token.proto", | 533 "quic/proto/source_address_token.proto", |
| 535 ] | 534 ] |
| (...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1687 if (enable_websockets) { | 1686 if (enable_websockets) { |
| 1688 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1687 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1689 } | 1688 } |
| 1690 | 1689 |
| 1691 if (use_v8_in_net) { | 1690 if (use_v8_in_net) { |
| 1692 deps += [ ":net_with_v8" ] | 1691 deps += [ ":net_with_v8" ] |
| 1693 } else { | 1692 } else { |
| 1694 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1693 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1695 } | 1694 } |
| 1696 } | 1695 } |
| OLD | NEW |