| 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("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 11 import("//mojo/public/tools/bindings/mojom.gni") |
| 11 import("//ppapi/features/features.gni") | 12 import("//ppapi/features/features.gni") |
| 12 import("//testing/test.gni") | 13 import("//testing/test.gni") |
| 13 import("//third_party/WebKit/public/public_features.gni") | 14 import("//third_party/WebKit/public/public_features.gni") |
| 14 import("//v8/gni/v8.gni") | 15 import("//v8/gni/v8.gni") |
| 15 | 16 |
| 16 # Use a static library here because many test binaries depend on this but don't | 17 # Use a static library here because many test binaries depend on this but don't |
| 17 # require many files from it. This makes linking more efficient. | 18 # require many files from it. This makes linking more efficient. |
| 18 static_library("test_support") { | 19 static_library("test_support") { |
| 19 testonly = true | 20 testonly = true |
| (...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1713 if (is_android) { | 1714 if (is_android) { |
| 1714 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1715 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1715 } | 1716 } |
| 1716 } | 1717 } |
| 1717 | 1718 |
| 1718 group("fuzzers") { | 1719 group("fuzzers") { |
| 1719 deps = [ | 1720 deps = [ |
| 1720 "//content/test/fuzzer", | 1721 "//content/test/fuzzer", |
| 1721 ] | 1722 ] |
| 1722 } | 1723 } |
| OLD | NEW |