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/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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 set_sources_assignment_filter(sources_assignment_filter) | 330 set_sources_assignment_filter(sources_assignment_filter) |
331 | 331 |
332 cflags = [] | 332 cflags = [] |
333 configs += net_configs | 333 configs += net_configs |
334 public_configs = [ ":net_config" ] | 334 public_configs = [ ":net_config" ] |
335 | 335 |
336 public_deps += [ "//url" ] | 336 public_deps += [ "//url" ] |
337 | 337 |
338 if (is_mac) { | 338 if (is_mac) { |
339 libs = [ | 339 libs = [ |
| 340 "CFNetwork.framework", |
| 341 "CoreServices.framework", |
340 "Foundation.framework", | 342 "Foundation.framework", |
341 "Security.framework", | 343 "Security.framework", |
342 "SystemConfiguration.framework", | 344 "SystemConfiguration.framework", |
343 "resolv", | 345 "resolv", |
344 ] | 346 ] |
345 } | 347 } |
346 | 348 |
347 if (is_ios) { | 349 if (is_ios) { |
348 libs = [ | 350 libs = [ |
349 "CFNetwork.framework", | 351 "CFNetwork.framework", |
(...skipping 1645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1995 "url_request/url_request_fuzzer.cc", | 1997 "url_request/url_request_fuzzer.cc", |
1996 ] | 1998 ] |
1997 deps = [ | 1999 deps = [ |
1998 ":net_fuzzer_test_support", | 2000 ":net_fuzzer_test_support", |
1999 ":test_support", | 2001 ":test_support", |
2000 "//base", | 2002 "//base", |
2001 "//net", | 2003 "//net", |
2002 ] | 2004 ] |
2003 dict = "data/http/http.dict" | 2005 dict = "data/http/http.dict" |
2004 } | 2006 } |
OLD | NEW |