| 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("//media/media_options.gni") |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 | 933 |
| 934 test("content_unittests") { | 934 test("content_unittests") { |
| 935 # See comment at the top of //content/BUILD.gn for why this is disabled in | 935 # See comment at the top of //content/BUILD.gn for why this is disabled in |
| 936 # component builds. | 936 # component builds. |
| 937 if (is_component_build) { | 937 if (is_component_build) { |
| 938 check_includes = false | 938 check_includes = false |
| 939 } | 939 } |
| 940 | 940 |
| 941 defines = [] | 941 defines = [] |
| 942 sources = [ | 942 sources = [ |
| 943 "../browser/accessibility/accessibility_mode_helper_unittest.cc", | |
| 944 "../browser/accessibility/browser_accessibility_mac_unittest.mm", | 943 "../browser/accessibility/browser_accessibility_mac_unittest.mm", |
| 945 "../browser/accessibility/browser_accessibility_manager_unittest.cc", | 944 "../browser/accessibility/browser_accessibility_manager_unittest.cc", |
| 946 "../browser/accessibility/browser_accessibility_win_unittest.cc", | 945 "../browser/accessibility/browser_accessibility_win_unittest.cc", |
| 947 "../browser/accessibility/one_shot_accessibility_tree_search_unittest.cc", | 946 "../browser/accessibility/one_shot_accessibility_tree_search_unittest.cc", |
| 948 "../browser/appcache/appcache_database_unittest.cc", | 947 "../browser/appcache/appcache_database_unittest.cc", |
| 949 "../browser/appcache/appcache_disk_cache_unittest.cc", | 948 "../browser/appcache/appcache_disk_cache_unittest.cc", |
| 950 "../browser/appcache/appcache_group_unittest.cc", | 949 "../browser/appcache/appcache_group_unittest.cc", |
| 951 "../browser/appcache/appcache_host_unittest.cc", | 950 "../browser/appcache/appcache_host_unittest.cc", |
| 952 "../browser/appcache/appcache_manifest_parser_unittest.cc", | 951 "../browser/appcache/appcache_manifest_parser_unittest.cc", |
| 953 "../browser/appcache/appcache_quota_client_unittest.cc", | 952 "../browser/appcache/appcache_quota_client_unittest.cc", |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1722 if (is_android) { | 1721 if (is_android) { |
| 1723 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1722 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1724 } | 1723 } |
| 1725 } | 1724 } |
| 1726 | 1725 |
| 1727 group("fuzzers") { | 1726 group("fuzzers") { |
| 1728 deps = [ | 1727 deps = [ |
| 1729 "//content/test/fuzzer", | 1728 "//content/test/fuzzer", |
| 1730 ] | 1729 ] |
| 1731 } | 1730 } |
| OLD | NEW |