| 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") |
| 11 import("//build_overrides/v8.gni") | |
| 12 import("//testing/libfuzzer/fuzzer_test.gni") | 11 import("//testing/libfuzzer/fuzzer_test.gni") |
| 13 import("//testing/test.gni") | 12 import("//testing/test.gni") |
| 14 import("//third_party/icu/config.gni") | 13 import("//third_party/icu/config.gni") |
| 15 import("//third_party/protobuf/proto_library.gni") | 14 import("//third_party/protobuf/proto_library.gni") |
| 16 import("//tools/grit/grit_rule.gni") | 15 import("//tools/grit/grit_rule.gni") |
| 17 import("//url/features.gni") | 16 import("//url/features.gni") |
| 17 import("//v8/gni/v8.gni") |
| 18 | 18 |
| 19 if (is_android) { | 19 if (is_android) { |
| 20 import("//build/config/android/config.gni") | 20 import("//build/config/android/config.gni") |
| 21 import("//build/config/android/rules.gni") | 21 import("//build/config/android/rules.gni") |
| 22 } else if (is_mac) { | 22 } else if (is_mac) { |
| 23 import("//build/config/mac/mac_sdk.gni") | 23 import("//build/config/mac/mac_sdk.gni") |
| 24 } | 24 } |
| 25 | 25 |
| 26 # The list of net files is kept in net.gypi. Read it. | 26 # The list of net files is kept in net.gypi. Read it. |
| 27 gypi_values = exec_script("//build/gypi_to_gn.py", | 27 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 2055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2083 "url_request/url_request_fuzzer.cc", | 2083 "url_request/url_request_fuzzer.cc", |
| 2084 ] | 2084 ] |
| 2085 deps = [ | 2085 deps = [ |
| 2086 ":net_fuzzer_test_support", | 2086 ":net_fuzzer_test_support", |
| 2087 ":test_support", | 2087 ":test_support", |
| 2088 "//base", | 2088 "//base", |
| 2089 "//net", | 2089 "//net", |
| 2090 ] | 2090 ] |
| 2091 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2091 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2092 } | 2092 } |
| OLD | NEW |