Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1469123002: [clean-up] Remove allocator dependency from library targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unify_allocator1_2
Patch Set: Rebase. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//chrome/chrome_tests.gni") 10 import("//chrome/chrome_tests.gni")
(...skipping 2085 matching lines...) Expand 10 before | Expand all | Expand 10 after
2096 "../app/delay_load_hook_win.h", 2096 "../app/delay_load_hook_win.h",
2097 "../app/resources/resources_unittest.cc", 2097 "../app/resources/resources_unittest.cc",
2098 "../app/signature_validator_win.cc", 2098 "../app/signature_validator_win.cc",
2099 "../app/signature_validator_win.h", 2099 "../app/signature_validator_win.h",
2100 "../app/signature_validator_win_unittest.cc", 2100 "../app/signature_validator_win_unittest.cc",
2101 "../common/crash_keys.cc", 2101 "../common/crash_keys.cc",
2102 "../common/crash_keys.h", 2102 "../common/crash_keys.h",
2103 ] 2103 ]
2104 deps = [ 2104 deps = [
2105 ":test_support", 2105 ":test_support",
2106 "//base/allocator",
2106 "//base/test:run_all_unittests", 2107 "//base/test:run_all_unittests",
2107 "//base/test:test_support", 2108 "//base/test:test_support",
2108 "//breakpad:client", 2109 "//breakpad:client",
2109 "//chrome/browser", 2110 "//chrome/browser",
2110 "//chrome/child", 2111 "//chrome/child",
2111 "//components/crash/core/common", 2112 "//components/crash/core/common",
2112 "//components/flags_ui:switches", 2113 "//components/flags_ui:switches",
2113 ] 2114 ]
2114 if (cld_version == 2) { 2115 if (cld_version == 2) {
2115 # Use whatever CLD2 data access mode that the 2116 # Use whatever CLD2 data access mode that the
2116 # application embedder is using. 2117 # application embedder is using.
2117 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 2118 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
2118 } 2119 }
2119 } 2120 }
2120 2121
2121 test("performance_browser_tests") { 2122 test("performance_browser_tests") {
2122 sources = 2123 sources =
2123 rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources, 2124 rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources,
2124 ".", 2125 ".",
2125 "//chrome") 2126 "//chrome")
2126 2127
2127 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 2128 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
2128 2129
2129 deps = [ 2130 deps = [
2130 ":test_support", 2131 ":test_support",
2131 ":test_support_ui", 2132 ":test_support_ui",
2132 "//base", 2133 "//base",
2133 "//base:i18n", 2134 "//base:i18n",
2135 "//base/allocator",
2134 "//base/test:test_support", 2136 "//base/test:test_support",
2135 "//chrome/browser", 2137 "//chrome/browser",
2136 "//chrome/renderer", 2138 "//chrome/renderer",
2137 "//components/about_handler", 2139 "//components/about_handler",
2138 "//components/autofill/content/browser/wallet:test_support", 2140 "//components/autofill/content/browser/wallet:test_support",
2139 "//components/autofill/content/renderer:test_support", 2141 "//components/autofill/content/renderer:test_support",
2140 "//media/cast:test_support", 2142 "//media/cast:test_support",
2141 "//testing/gmock", 2143 "//testing/gmock",
2142 "//testing/gtest", 2144 "//testing/gtest",
2143 "//testing/perf", 2145 "//testing/perf",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
2198 if (is_android) { 2200 if (is_android) {
2199 android_library("unit_tests_java") { 2201 android_library("unit_tests_java") {
2200 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2202 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2201 deps = [ 2203 deps = [
2202 "//base:base_java", 2204 "//base:base_java",
2203 "//chrome/android:chrome_java", 2205 "//chrome/android:chrome_java",
2204 "//content/public/android:content_java", 2206 "//content/public/android:content_java",
2205 ] 2207 ]
2206 } 2208 }
2207 } 2209 }
OLDNEW
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698