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

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

Issue 943233002: don't mix system and bundled ICU (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add another missing icuuc dep Created 5 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/base.gyp ('k') | extensions/extensions.gyp » ('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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 public_deps = [ 109 public_deps = [
110 "//base", 110 "//base",
111 "//base:i18n", 111 "//base:i18n",
112 "//base:base_static", 112 "//base:base_static",
113 ] 113 ]
114 deps = [ 114 deps = [
115 "//base/third_party/dynamic_annotations", 115 "//base/third_party/dynamic_annotations",
116 "//testing/gmock", 116 "//testing/gmock",
117 "//testing/gtest", 117 "//testing/gtest",
118 "//third_party/libxml", 118 "//third_party/libxml",
119 "//third_party/icu:icuuc",
119 ] 120 ]
120 121
121 if (!is_posix) { 122 if (!is_posix) {
122 sources -= [ 123 sources -= [
123 "scoped_locale.cc", 124 "scoped_locale.cc",
124 "scoped_locale.h", 125 "scoped_locale.h",
125 ] 126 ]
126 } 127 }
127 if (is_ios) { 128 if (is_ios) {
128 # iOS uses its own unit test launcher. 129 # iOS uses its own unit test launcher.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 } 169 }
169 170
170 if (is_android) { 171 if (is_android) {
171 generate_jni("base_unittests_jni_headers") { 172 generate_jni("base_unittests_jni_headers") {
172 sources = [ 173 sources = [
173 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 174 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
174 ] 175 ]
175 jni_package = "base" 176 jni_package = "base"
176 } 177 }
177 } 178 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698