| 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_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 "proxy/proxy_service_v8.cc", | 735 "proxy/proxy_service_v8.cc", |
| 736 "proxy/proxy_service_v8.h", | 736 "proxy/proxy_service_v8.h", |
| 737 ] | 737 ] |
| 738 | 738 |
| 739 defines = [ "NET_IMPLEMENTATION" ] | 739 defines = [ "NET_IMPLEMENTATION" ] |
| 740 configs += [ | 740 configs += [ |
| 741 "//build/config/compiler:no_size_t_to_int_warning", | 741 "//build/config/compiler:no_size_t_to_int_warning", |
| 742 "//build/config/compiler:wexit_time_destructors", | 742 "//build/config/compiler:wexit_time_destructors", |
| 743 ] | 743 ] |
| 744 | 744 |
| 745 if (v8_use_external_startup_data) { |
| 746 configs += [ "//v8:external_startup_data" ] |
| 747 } |
| 748 |
| 745 public_deps = [ | 749 public_deps = [ |
| 746 ":net", | 750 ":net", |
| 747 ] | 751 ] |
| 748 deps = [ | 752 deps = [ |
| 749 "//base", | 753 "//base", |
| 750 "//gin", | 754 "//gin", |
| 751 "//url", | 755 "//url", |
| 752 "//v8", | 756 "//v8", |
| 753 ] | 757 ] |
| 754 } | 758 } |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1638 if (enable_websockets) { | 1642 if (enable_websockets) { |
| 1639 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1643 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1640 } | 1644 } |
| 1641 | 1645 |
| 1642 if (use_v8_in_net) { | 1646 if (use_v8_in_net) { |
| 1643 deps += [ ":net_with_v8" ] | 1647 deps += [ ":net_with_v8" ] |
| 1644 } else { | 1648 } else { |
| 1645 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1649 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1646 } | 1650 } |
| 1647 } | 1651 } |
| OLD | NEW |