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("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 2091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2102 "../common/crash_keys.h", | 2102 "../common/crash_keys.h", |
2103 ] | 2103 ] |
2104 deps = [ | 2104 deps = [ |
2105 ":test_support", | 2105 ":test_support", |
2106 "//base/test:run_all_unittests", | 2106 "//base/test:run_all_unittests", |
2107 "//base/test:test_support", | 2107 "//base/test:test_support", |
2108 "//breakpad:client", | 2108 "//breakpad:client", |
2109 "//chrome/browser", | 2109 "//chrome/browser", |
2110 "//chrome/child", | 2110 "//chrome/child", |
2111 "//components/crash/core/common", | 2111 "//components/crash/core/common", |
| 2112 "//components/flags_ui:switches", |
2112 ] | 2113 ] |
2113 if (cld_version == 2) { | 2114 if (cld_version == 2) { |
2114 # Use whatever CLD2 data access mode that the | 2115 # Use whatever CLD2 data access mode that the |
2115 # application embedder is using. | 2116 # application embedder is using. |
2116 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 2117 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
2117 } | 2118 } |
2118 } | 2119 } |
2119 | 2120 |
2120 test("performance_browser_tests") { | 2121 test("performance_browser_tests") { |
2121 sources = | 2122 sources = |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2197 if (is_android) { | 2198 if (is_android) { |
2198 android_library("unit_tests_java") { | 2199 android_library("unit_tests_java") { |
2199 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2200 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
2200 deps = [ | 2201 deps = [ |
2201 "//base:base_java", | 2202 "//base:base_java", |
2202 "//chrome/android:chrome_java", | 2203 "//chrome/android:chrome_java", |
2203 "//content/public/android:content_java", | 2204 "//content/public/android:content_java", |
2204 ] | 2205 ] |
2205 } | 2206 } |
2206 } | 2207 } |
OLD | NEW |