| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 data = [ | 137 data = [ |
| 138 # The isolate needs this script for setting up the test. It's not actually | 138 # The isolate needs this script for setting up the test. It's not actually |
| 139 # needed to run this target locally. | 139 # needed to run this target locally. |
| 140 "//testing/test_env.py", | 140 "//testing/test_env.py", |
| 141 ] | 141 ] |
| 142 | 142 |
| 143 public_deps = [ | 143 public_deps = [ |
| 144 ":test_config", | 144 ":test_config", |
| 145 "//base", | 145 "//base", |
| 146 "//base:base_static", |
| 146 "//base:i18n", | 147 "//base:i18n", |
| 147 "//base:base_static", | |
| 148 ] | 148 ] |
| 149 deps = [ | 149 deps = [ |
| 150 "//base/third_party/dynamic_annotations", | 150 "//base/third_party/dynamic_annotations", |
| 151 "//testing/gmock", | 151 "//testing/gmock", |
| 152 "//testing/gtest", | 152 "//testing/gtest", |
| 153 "//third_party/icu:icuuc", |
| 153 "//third_party/libxml", | 154 "//third_party/libxml", |
| 154 "//third_party/icu:icuuc", | |
| 155 ] | 155 ] |
| 156 | 156 |
| 157 if (!is_posix) { | 157 if (!is_posix) { |
| 158 sources -= [ | 158 sources -= [ |
| 159 "scoped_locale.cc", | 159 "scoped_locale.cc", |
| 160 "scoped_locale.h", | 160 "scoped_locale.h", |
| 161 ] | 161 ] |
| 162 } | 162 } |
| 163 | 163 |
| 164 if (is_ios) { | 164 if (is_ios) { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 215 |
| 216 if (is_android) { | 216 if (is_android) { |
| 217 generate_jni("base_unittests_jni_headers") { | 217 generate_jni("base_unittests_jni_headers") { |
| 218 sources = [ | 218 sources = [ |
| 219 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 219 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 220 "android/java/src/org/chromium/base/TestUiThread.java", | 220 "android/java/src/org/chromium/base/TestUiThread.java", |
| 221 ] | 221 ] |
| 222 jni_package = "base" | 222 jni_package = "base" |
| 223 } | 223 } |
| 224 } | 224 } |
| OLD | NEW |