| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |