Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Side by Side Diff: net/BUILD.gn

Issue 2911643003: Reland of Add missing dependencies on exe_and_shlib_deps (Chromium repo) (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/cdm/ppapi/ppapi_cdm_adapter.gni ('k') | ppapi/examples/ppapi_example.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2896 matching lines...) Expand 10 before | Expand all | Expand 10 after
2907 if (is_linux || is_mac) { 2907 if (is_linux || is_mac) {
2908 executable("cachetool") { 2908 executable("cachetool") {
2909 testonly = true 2909 testonly = true
2910 sources = [ 2910 sources = [
2911 "tools/cachetool/cachetool.cc", 2911 "tools/cachetool/cachetool.cc",
2912 ] 2912 ]
2913 deps = [ 2913 deps = [
2914 ":net", 2914 ":net",
2915 ":test_support", 2915 ":test_support",
2916 "//base", 2916 "//base",
2917 "//build/config:exe_and_shlib_deps",
2917 ] 2918 ]
2918 } 2919 }
2919 2920
2920 executable("content_decoder_tool") { 2921 executable("content_decoder_tool") {
2921 testonly = true 2922 testonly = true
2922 sources = [ 2923 sources = [
2923 "tools/content_decoder_tool/content_decoder_tool.cc", 2924 "tools/content_decoder_tool/content_decoder_tool.cc",
2924 "tools/content_decoder_tool/content_decoder_tool.h", 2925 "tools/content_decoder_tool/content_decoder_tool.h",
2925 "tools/content_decoder_tool/content_decoder_tool_bin.cc", 2926 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
2926 ] 2927 ]
2927 deps = [ 2928 deps = [
2928 ":net", 2929 ":net",
2929 ":test_support", 2930 ":test_support",
2930 "//base", 2931 "//base",
2932 "//build/config:exe_and_shlib_deps",
2931 "//url", 2933 "//url",
2932 ] 2934 ]
2933 } 2935 }
2934 } 2936 }
2935 2937
2936 if (is_linux) { 2938 if (is_linux) {
2937 static_library("epoll_server") { 2939 static_library("epoll_server") {
2938 sources = [ 2940 sources = [
2939 "tools/epoll_server/epoll_server.cc", 2941 "tools/epoll_server/epoll_server.cc",
2940 "tools/epoll_server/epoll_server.h", 2942 "tools/epoll_server/epoll_server.h",
(...skipping 3001 matching lines...) Expand 10 before | Expand all | Expand 10 after
5942 ] 5944 ]
5943 deps = [ 5945 deps = [
5944 ":net_fuzzer_test_support", 5946 ":net_fuzzer_test_support",
5945 ":test_support", 5947 ":test_support",
5946 "//base", 5948 "//base",
5947 "//net", 5949 "//net",
5948 ] 5950 ]
5949 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5951 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5950 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5952 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5951 } 5953 }
OLDNEW
« no previous file with comments | « media/cdm/ppapi/ppapi_cdm_adapter.gni ('k') | ppapi/examples/ppapi_example.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698