| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") | 
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") | 
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") | 
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") | 
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") | 
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") | 
| 11 import("//testing/test.gni") | 11 import("//testing/test.gni") | 
|  | 12 import("//third_party/WebKit/public/public_features.gni") | 
| 12 import("//v8/gni/v8.gni") | 13 import("//v8/gni/v8.gni") | 
| 13 | 14 | 
| 14 # Use a static library here because many test binaries depend on this but don't | 15 # Use a static library here because many test binaries depend on this but don't | 
| 15 # require many files from it. This makes linking more efficient. | 16 # require many files from it. This makes linking more efficient. | 
| 16 static_library("test_support") { | 17 static_library("test_support") { | 
| 17   testonly = true | 18   testonly = true | 
| 18 | 19 | 
| 19   # See comment at the top of //content/BUILD.gn for why this is disabled in | 20   # See comment at the top of //content/BUILD.gn for why this is disabled in | 
| 20   # component builds. | 21   # component builds. | 
| 21   if (is_component_build) { | 22   if (is_component_build) { | 
| (...skipping 1684 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1706   if (is_android) { | 1707   if (is_android) { | 
| 1707     deps += [ "//testing/android/native_test:native_test_native_code" ] | 1708     deps += [ "//testing/android/native_test:native_test_native_code" ] | 
| 1708   } | 1709   } | 
| 1709 } | 1710 } | 
| 1710 | 1711 | 
| 1711 group("fuzzers") { | 1712 group("fuzzers") { | 
| 1712   deps = [ | 1713   deps = [ | 
| 1713     "//content/test/fuzzer", | 1714     "//content/test/fuzzer", | 
| 1714   ] | 1715   ] | 
| 1715 } | 1716 } | 
| OLD | NEW | 
|---|