| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") | 
| 7 import("//build/toolchain/toolchain.gni") | 7 import("//build/toolchain/toolchain.gni") | 
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") | 
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") | 
| 10 import("//testing/libfuzzer/fuzzer_test.gni") | 10 import("//testing/libfuzzer/fuzzer_test.gni") | 
| (...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1682   configs += [ | 1682   configs += [ | 
| 1683     ":blink_core_pch", | 1683     ":blink_core_pch", | 
| 1684     "//third_party/WebKit/Source:config", | 1684     "//third_party/WebKit/Source:config", | 
| 1685     "//third_party/WebKit/Source:inside_blink", | 1685     "//third_party/WebKit/Source:inside_blink", | 
| 1686   ] | 1686   ] | 
| 1687 | 1687 | 
| 1688   deps = [ | 1688   deps = [ | 
| 1689     ":core", | 1689     ":core", | 
| 1690     "//testing/gmock", | 1690     "//testing/gmock", | 
| 1691     "//testing/gtest", | 1691     "//testing/gtest", | 
| 1692     "//third_party/WebKit/Source/core/editing:unit_tests", | 1692     "//third_party/WebKit/Source/core/editing:editing_unit_tests", | 
| 1693   ] | 1693   ] | 
| 1694 | 1694 | 
| 1695   # FIXME: Enable mojo unittests on Android after fixing data dependency. | 1695   # FIXME: Enable mojo unittests on Android after fixing data dependency. | 
| 1696   # crbug.com/741925 | 1696   # crbug.com/741925 | 
| 1697   if (!is_android) { | 1697   if (!is_android) { | 
| 1698     deps += [ "//third_party/WebKit/Source/core/mojo:unit_tests" ] | 1698     deps += [ "//third_party/WebKit/Source/core/mojo:unit_tests" ] | 
| 1699   } | 1699   } | 
| 1700 } | 1700 } | 
| 1701 | 1701 | 
| 1702 # Fuzzer for blink::StyleSheetContents | 1702 # Fuzzer for blink::StyleSheetContents | 
| (...skipping 27 matching lines...) Expand all  Loading... | 
| 1730   sources = [ | 1730   sources = [ | 
| 1731     "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1731     "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 
| 1732   ] | 1732   ] | 
| 1733   deps = [ | 1733   deps = [ | 
| 1734     ":core", | 1734     ":core", | 
| 1735     "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1735     "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 
| 1736   ] | 1736   ] | 
| 1737   dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1737   dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 
| 1738   seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1738   seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 
| 1739 } | 1739 } | 
| OLD | NEW | 
|---|