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

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

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 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/task_runner_util.h ('k') | base/test/android/java/src/org/chromium/base/TestUiThread.java » ('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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 "trace_event_analyzer.cc", 121 "trace_event_analyzer.cc",
122 "trace_event_analyzer.h", 122 "trace_event_analyzer.h",
123 "trace_to_file.cc", 123 "trace_to_file.cc",
124 "trace_to_file.h", 124 "trace_to_file.h",
125 "user_action_tester.cc", 125 "user_action_tester.cc",
126 "user_action_tester.h", 126 "user_action_tester.h",
127 "values_test_util.cc", 127 "values_test_util.cc",
128 "values_test_util.h", 128 "values_test_util.h",
129 ] 129 ]
130 130
131 data = [
132 # The isolate needs this script for setting up the test. It's not actually
133 # needed to run this target locally.
134 "//testing/test_env.py",
135 ]
136
131 public_deps = [ 137 public_deps = [
132 ":test_config", 138 ":test_config",
133 "//base", 139 "//base",
140 "//base:base_static",
134 "//base:i18n", 141 "//base:i18n",
135 "//base:base_static",
136 ] 142 ]
137 deps = [ 143 deps = [
138 "//base/third_party/dynamic_annotations", 144 "//base/third_party/dynamic_annotations",
139 "//testing/gmock", 145 "//testing/gmock",
140 "//testing/gtest", 146 "//testing/gtest",
147 "//third_party/icu:icuuc",
141 "//third_party/libxml", 148 "//third_party/libxml",
142 "//third_party/icu:icuuc",
143 ] 149 ]
144 150
145 if (!is_posix) { 151 if (!is_posix) {
146 sources -= [ 152 sources -= [
147 "scoped_locale.cc", 153 "scoped_locale.cc",
148 "scoped_locale.h", 154 "scoped_locale.h",
149 ] 155 ]
150 } 156 }
151 if (is_ios) { 157 if (is_ios) {
152 # iOS uses its own unit test launcher. 158 # iOS uses its own unit test launcher.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 211
206 if (is_android) { 212 if (is_android) {
207 generate_jni("base_unittests_jni_headers") { 213 generate_jni("base_unittests_jni_headers") {
208 sources = [ 214 sources = [
209 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 215 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
210 "android/java/src/org/chromium/base/TestUiThread.java", 216 "android/java/src/org/chromium/base/TestUiThread.java",
211 ] 217 ]
212 jni_package = "base" 218 jni_package = "base"
213 } 219 }
214 } 220 }
OLDNEW
« no previous file with comments | « base/task_runner_util.h ('k') | base/test/android/java/src/org/chromium/base/TestUiThread.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698