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