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

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

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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 | « base/allocator/BUILD.gn ('k') | breakpad/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 testonly = true 141 testonly = true
142 sources = [ 142 sources = [
143 "run_all_perftests.cc", 143 "run_all_perftests.cc",
144 ] 144 ]
145 deps = [ 145 deps = [
146 ":test_support", 146 ":test_support",
147 "//base", 147 "//base",
148 "//testing/gtest", 148 "//testing/gtest",
149 ] 149 ]
150 150
151 direct_dependent_configs = [ ":perf_test_config" ] 151 public_configs = [ ":perf_test_config" ]
152 } 152 }
153 153
154 source_set("run_all_unittests") { 154 source_set("run_all_unittests") {
155 testonly = true 155 testonly = true
156 sources = [ 156 sources = [
157 "run_all_unittests.cc", 157 "run_all_unittests.cc",
158 ] 158 ]
159 deps = [ 159 deps = [
160 ":test_support", 160 ":test_support",
161 ] 161 ]
162 } 162 }
163 163
164 if (is_android) { 164 if (is_android) {
165 generate_jni("base_unittests_jni_headers") { 165 generate_jni("base_unittests_jni_headers") {
166 sources = [ 166 sources = [
167 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 167 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
168 ] 168 ]
169 jni_package = "base" 169 jni_package = "base"
170 } 170 }
171 } 171 }
OLDNEW
« no previous file with comments | « base/allocator/BUILD.gn ('k') | breakpad/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698