| 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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 sources = [ | 1000 sources = [ |
| 1001 "tools/net_watcher/net_watcher.cc", | 1001 "tools/net_watcher/net_watcher.cc", |
| 1002 ] | 1002 ] |
| 1003 deps = [ | 1003 deps = [ |
| 1004 ":net", | 1004 ":net", |
| 1005 ":net_with_v8", | 1005 ":net_with_v8", |
| 1006 "//base", | 1006 "//base", |
| 1007 ] | 1007 ] |
| 1008 | 1008 |
| 1009 if (is_desktop_linux) { | 1009 if (is_desktop_linux) { |
| 1010 configs += [ | |
| 1011 "//build/config/linux:gconf", | |
| 1012 "//build/config/linux:glib", | |
| 1013 ] | |
| 1014 deps += [ "//build/config/linux:gio" ] | 1010 deps += [ "//build/config/linux:gio" ] |
| 1015 } | 1011 } |
| 1012 |
| 1013 if (use_gconf) { |
| 1014 configs += [ "//build/config/linux:gconf" ] |
| 1015 } |
| 1016 |
| 1017 if (use_glib) { |
| 1018 configs += [ "//build/config/linux:glib" ] |
| 1019 } |
| 1016 } | 1020 } |
| 1017 } | 1021 } |
| 1018 | 1022 |
| 1019 executable("run_testserver") { | 1023 executable("run_testserver") { |
| 1020 testonly = true | 1024 testonly = true |
| 1021 sources = [ | 1025 sources = [ |
| 1022 "tools/testserver/run_testserver.cc", | 1026 "tools/testserver/run_testserver.cc", |
| 1023 ] | 1027 ] |
| 1024 deps = [ | 1028 deps = [ |
| 1025 ":test_support", | 1029 ":test_support", |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 if (enable_websockets) { | 1690 if (enable_websockets) { |
| 1687 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1691 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1688 } | 1692 } |
| 1689 | 1693 |
| 1690 if (use_v8_in_net) { | 1694 if (use_v8_in_net) { |
| 1691 deps += [ ":net_with_v8" ] | 1695 deps += [ ":net_with_v8" ] |
| 1692 } else { | 1696 } else { |
| 1693 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1697 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1694 } | 1698 } |
| 1695 } | 1699 } |
| OLD | NEW |