| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/split_static_library.gni") | 7 import("//build/split_static_library.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//third_party/WebKit/Source/bindings/bindings.gni") | 9 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "//third_party/WebKit/Source/core/streams", | 170 "//third_party/WebKit/Source/core/streams", |
| 171 "//third_party/WebKit/Source/core/style:rendering", | 171 "//third_party/WebKit/Source/core/style:rendering", |
| 172 "//third_party/WebKit/Source/core/style:svg", | 172 "//third_party/WebKit/Source/core/style:svg", |
| 173 "//third_party/WebKit/Source/core/svg", | 173 "//third_party/WebKit/Source/core/svg", |
| 174 "//third_party/WebKit/Source/core/timing", | 174 "//third_party/WebKit/Source/core/timing", |
| 175 "//third_party/WebKit/Source/core/workers", | 175 "//third_party/WebKit/Source/core/workers", |
| 176 "//third_party/WebKit/Source/core/xml", | 176 "//third_party/WebKit/Source/core/xml", |
| 177 "//third_party/WebKit/Source/core/xmlhttprequest", | 177 "//third_party/WebKit/Source/core/xmlhttprequest", |
| 178 ] | 178 ] |
| 179 | 179 |
| 180 if (is_win && is_debug && is_component_build) { | 180 if (is_win && is_debug && is_component_build && current_cpu == "x64") { |
| 181 # Incremental linking doesn't work on this target in debug mode, even | 181 # Incremental linking doesn't work on this target in debug mode for |
| 182 # with symbol_level=1. | 182 # 64-bit builds - the .ilk file gets too large and the incremental |
| 183 # link silently fails. Therefore 32-bit builds should be used for |
| 184 # fastest incremental build performance. |
| 183 configs -= [ "//build/config/win:default_incremental_linking" ] | 185 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 184 configs += [ "//build/config/win:no_incremental_linking" ] | 186 configs += [ "//build/config/win:no_incremental_linking" ] |
| 185 } | 187 } |
| 186 | 188 |
| 187 public_configs = [ ":core_include_dirs" ] | 189 public_configs = [ ":core_include_dirs" ] |
| 188 | 190 |
| 189 if (is_mac) { | 191 if (is_mac) { |
| 190 libs = [ | 192 libs = [ |
| 191 "AppKit.framework", | 193 "AppKit.framework", |
| 192 "Carbon.framework", | 194 "Carbon.framework", |
| (...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 sources = [ | 1237 sources = [ |
| 1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1238 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1237 "html/parser/TextResourceDecoderForFuzzing.h", | 1239 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1238 ] | 1240 ] |
| 1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1241 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1240 deps = [ | 1242 deps = [ |
| 1241 ":core", | 1243 ":core", |
| 1242 "../platform:blink_fuzzer_test_support", | 1244 "../platform:blink_fuzzer_test_support", |
| 1243 ] | 1245 ] |
| 1244 } | 1246 } |
| OLD | NEW |