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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 "proxy/proxy_resolver_v8.h", | 730 "proxy/proxy_resolver_v8.h", |
731 "proxy/proxy_resolver_v8_tracing.cc", | 731 "proxy/proxy_resolver_v8_tracing.cc", |
732 "proxy/proxy_resolver_v8_tracing.h", | 732 "proxy/proxy_resolver_v8_tracing.h", |
733 "proxy/proxy_resolver_v8_tracing_wrapper.cc", | 733 "proxy/proxy_resolver_v8_tracing_wrapper.cc", |
734 "proxy/proxy_resolver_v8_tracing_wrapper.h", | 734 "proxy/proxy_resolver_v8_tracing_wrapper.h", |
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 |
740 configs += [ | 741 configs += [ |
741 "//build/config/compiler:no_size_t_to_int_warning", | 742 "//build/config/compiler:no_size_t_to_int_warning", |
742 "//build/config/compiler:wexit_time_destructors", | 743 "//build/config/compiler:wexit_time_destructors", |
| 744 "//v8:external_startup_data", |
743 ] | 745 ] |
744 | 746 |
745 public_deps = [ | 747 public_deps = [ |
746 ":net", | 748 ":net", |
747 ] | 749 ] |
748 deps = [ | 750 deps = [ |
749 "//base", | 751 "//base", |
750 "//gin", | 752 "//gin", |
751 "//url", | 753 "//url", |
752 "//v8", | 754 "//v8", |
(...skipping 885 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 |