| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build/module_args/v8.gni") | 10 import("//build/module_args/v8.gni") |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 net_shared_public_deps = [ | 98 net_shared_public_deps = [ |
| 99 ":net_quic_proto", | 99 ":net_quic_proto", |
| 100 "//crypto", | 100 "//crypto", |
| 101 "//crypto:platform", | 101 "//crypto:platform", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 net_shared_deps = [ | 104 net_shared_deps = [ |
| 105 ":net_resources", | 105 ":net_resources", |
| 106 "//base", | 106 "//base", |
| 107 "//net/base/registry_controlled_domains", | 107 "//net/base/registry_controlled_domains", |
| 108 "//net/base/swr_histogram_domains", |
| 108 "//third_party/protobuf:protobuf_lite", | 109 "//third_party/protobuf:protobuf_lite", |
| 109 ] | 110 ] |
| 110 | 111 |
| 111 if (!is_nacl) { | 112 if (!is_nacl) { |
| 112 net_shared_sources += gypi_values.net_non_nacl_sources | 113 net_shared_sources += gypi_values.net_non_nacl_sources |
| 113 | 114 |
| 114 net_shared_deps += [ | 115 net_shared_deps += [ |
| 115 "//base:prefs", | 116 "//base:prefs", |
| 116 "//base/third_party/dynamic_annotations", | 117 "//base/third_party/dynamic_annotations", |
| 117 "//sdch", | 118 "//sdch", |
| (...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 ":test_support", | 1318 ":test_support", |
| 1318 "//base", | 1319 "//base", |
| 1319 "//base:i18n", | 1320 "//base:i18n", |
| 1320 "//base:prefs_test_support", | 1321 "//base:prefs_test_support", |
| 1321 "//base/allocator", | 1322 "//base/allocator", |
| 1322 "//base/third_party/dynamic_annotations", | 1323 "//base/third_party/dynamic_annotations", |
| 1323 "//crypto", | 1324 "//crypto", |
| 1324 "//crypto:platform", | 1325 "//crypto:platform", |
| 1325 "//crypto:test_support", | 1326 "//crypto:test_support", |
| 1326 "//net/base/registry_controlled_domains", | 1327 "//net/base/registry_controlled_domains", |
| 1328 "//net/base/swr_histogram_domains", |
| 1327 "//sql", | 1329 "//sql", |
| 1328 "//testing/gmock", | 1330 "//testing/gmock", |
| 1329 "//testing/gtest", | 1331 "//testing/gtest", |
| 1330 "//third_party/zlib", | 1332 "//third_party/zlib", |
| 1331 "//url", | 1333 "//url", |
| 1332 ] | 1334 ] |
| 1333 | 1335 |
| 1334 data = [ | 1336 data = [ |
| 1335 "data/", | 1337 "data/", |
| 1336 ] | 1338 ] |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1638 if (enable_websockets) { | 1640 if (enable_websockets) { |
| 1639 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1641 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1640 } | 1642 } |
| 1641 | 1643 |
| 1642 if (use_v8_in_net) { | 1644 if (use_v8_in_net) { |
| 1643 deps += [ ":net_with_v8" ] | 1645 deps += [ ":net_with_v8" ] |
| 1644 } else { | 1646 } else { |
| 1645 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1647 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1646 } | 1648 } |
| 1647 } | 1649 } |
| OLD | NEW |