| 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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1429 "//testing/gtest", | 1429 "//testing/gtest", |
| 1430 "//third_party/zlib", | 1430 "//third_party/zlib", |
| 1431 "//url", | 1431 "//url", |
| 1432 ] | 1432 ] |
| 1433 | 1433 |
| 1434 data = [ | 1434 data = [ |
| 1435 "data/", | 1435 "data/", |
| 1436 ] | 1436 ] |
| 1437 data_deps = [] | 1437 data_deps = [] |
| 1438 | 1438 |
| 1439 if (use_openssl) { | 1439 if (!is_ios) { |
| 1440 data_deps += [ "third_party/nist-pkits/" ] | 1440 data_deps += [ "third_party/nist-pkits/" ] |
| 1441 } | 1441 } |
| 1442 | 1442 |
| 1443 if (is_linux || is_mac || is_win) { | 1443 if (is_linux || is_mac || is_win) { |
| 1444 deps += [ | 1444 deps += [ |
| 1445 "//third_party/pyftpdlib/", | 1445 "//third_party/pyftpdlib/", |
| 1446 "//third_party/pywebsocket/", | 1446 "//third_party/pywebsocket/", |
| 1447 "//third_party/tlslite/", | 1447 "//third_party/tlslite/", |
| 1448 ] | 1448 ] |
| 1449 data_deps += [ | 1449 data_deps += [ |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1918 sources = [ | 1918 sources = [ |
| 1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1920 ] | 1920 ] |
| 1921 deps = [ | 1921 deps = [ |
| 1922 ":net_fuzzer_test_support", | 1922 ":net_fuzzer_test_support", |
| 1923 "//base", | 1923 "//base", |
| 1924 "//net", | 1924 "//net", |
| 1925 ] | 1925 ] |
| 1926 } | 1926 } |
| OLD | NEW |