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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 } | 382 } |
383 | 383 |
384 if (is_android) { | 384 if (is_android) { |
385 net_shared_deps += [ ":net_jni_headers" ] | 385 net_shared_deps += [ ":net_jni_headers" ] |
386 | 386 |
387 # Add some Linux sources that were excluded by the filter, but which | 387 # Add some Linux sources that were excluded by the filter, but which |
388 # are needed. | 388 # are needed. |
389 net_shared_unfiltered_sources += [ | 389 net_shared_unfiltered_sources += [ |
390 "base/address_tracker_linux.cc", | 390 "base/address_tracker_linux.cc", |
391 "base/address_tracker_linux.h", | 391 "base/address_tracker_linux.h", |
| 392 "base/network_interfaces_android.cc", |
392 "base/network_interfaces_linux.cc", | 393 "base/network_interfaces_linux.cc", |
393 "base/network_interfaces_linux.h", | 394 "base/network_interfaces_linux.h", |
394 "base/platform_mime_util_linux.cc", | 395 "base/platform_mime_util_linux.cc", |
395 ] | 396 ] |
396 } | 397 } |
397 } else { | 398 } else { |
398 net_shared_public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 399 net_shared_public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
399 } | 400 } |
400 | 401 |
401 component("net") { | 402 component("net") { |
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1739 } else { | 1740 } else { |
1740 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1741 } | 1742 } |
1742 } | 1743 } |
1743 | 1744 |
1744 buildflag_header("features") { | 1745 buildflag_header("features") { |
1745 header = "net_features.h" | 1746 header = "net_features.h" |
1746 | 1747 |
1747 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1748 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
1748 } | 1749 } |
OLD | NEW |