| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 "//net/tools/tld_cleanup", | 625 "//net/tools/tld_cleanup", |
| 626 "//testing/gmock", | 626 "//testing/gmock", |
| 627 "//testing/gtest", | 627 "//testing/gtest", |
| 628 "//url", | 628 "//url", |
| 629 ] | 629 ] |
| 630 | 630 |
| 631 deps = [ | 631 deps = [ |
| 632 ":test_support_bundle_data", | 632 ":test_support_bundle_data", |
| 633 ] | 633 ] |
| 634 | 634 |
| 635 data = [ |
| 636 "data/", |
| 637 ] |
| 638 |
| 635 if (!is_ios) { | 639 if (!is_ios) { |
| 636 public_deps += [ "//third_party/protobuf:py_proto" ] | 640 public_deps += [ "//third_party/protobuf:py_proto" ] |
| 637 } | 641 } |
| 638 | 642 |
| 639 if (use_nss_certs) { | 643 if (use_nss_certs) { |
| 640 public_deps += [ "//crypto:platform" ] | 644 public_deps += [ "//crypto:platform" ] |
| 641 } | 645 } |
| 642 | 646 |
| 643 if (is_android) { | 647 if (is_android) { |
| 644 sources += [ | 648 sources += [ |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 "//crypto:test_support", | 1426 "//crypto:test_support", |
| 1423 "//net/base/registry_controlled_domains", | 1427 "//net/base/registry_controlled_domains", |
| 1424 "//sql", | 1428 "//sql", |
| 1425 "//testing/gmock", | 1429 "//testing/gmock", |
| 1426 "//testing/gtest", | 1430 "//testing/gtest", |
| 1427 "//third_party/zlib", | 1431 "//third_party/zlib", |
| 1428 "//url", | 1432 "//url", |
| 1429 "//url:url_features", | 1433 "//url:url_features", |
| 1430 ] | 1434 ] |
| 1431 | 1435 |
| 1432 data = [ | 1436 data = [] |
| 1433 "data/", | |
| 1434 ] | |
| 1435 data_deps = [ | 1437 data_deps = [ |
| 1436 "third_party/nist-pkits/", | 1438 "third_party/nist-pkits/", |
| 1437 ] | 1439 ] |
| 1438 | 1440 |
| 1439 if (is_linux || is_mac || is_win) { | 1441 if (is_linux || is_mac || is_win) { |
| 1440 deps += [ | 1442 deps += [ |
| 1441 "//third_party/pyftpdlib/", | 1443 "//third_party/pyftpdlib/", |
| 1442 "//third_party/pywebsocket/", | 1444 "//third_party/pywebsocket/", |
| 1443 "//third_party/tlslite/", | 1445 "//third_party/tlslite/", |
| 1444 ] | 1446 ] |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2070 "url_request/url_request_fuzzer.cc", | 2072 "url_request/url_request_fuzzer.cc", |
| 2071 ] | 2073 ] |
| 2072 deps = [ | 2074 deps = [ |
| 2073 ":net_fuzzer_test_support", | 2075 ":net_fuzzer_test_support", |
| 2074 ":test_support", | 2076 ":test_support", |
| 2075 "//base", | 2077 "//base", |
| 2076 "//net", | 2078 "//net", |
| 2077 ] | 2079 ] |
| 2078 dict = "data/http/http.dict" | 2080 dict = "data/http/http.dict" |
| 2079 } | 2081 } |
| OLD | NEW |