summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsdefresne <sdefresne@chromium.org>2015-07-23 02:45:23 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-23 09:45:52 +0000
commitd336c9f3c43921fda32cddeeb42ed116fd9f5d55 (patch)
tree883411ae7c340abd6f0d2ef5644c5bba1da033ae
parentbfec4d91a47b55995803fb545031fd02a37351fc (diff)
downloadchromium_src-d336c9f3c43921fda32cddeeb42ed116fd9f5d55.zip
chromium_src-d336c9f3c43921fda32cddeeb42ed116fd9f5d55.tar.gz
chromium_src-d336c9f3c43921fda32cddeeb42ed116fd9f5d55.tar.bz2
Fix components/rlz/BUILD.gn on iOS.
The intention of the code was to add //ui/base to the list of deps when building for iOS, not to replace the list, so use the correct operator. BUG=459705 Review URL: https://codereview.chromium.org/1253463002 Cr-Commit-Position: refs/heads/master@{#340062}
-rw-r--r--components/rlz/BUILD.gn4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/rlz/BUILD.gn b/components/rlz/BUILD.gn
index 85608322..dad456e 100644
--- a/components/rlz/BUILD.gn
+++ b/components/rlz/BUILD.gn
@@ -21,9 +21,7 @@ source_set("rlz") {
]
if (is_ios) {
- deps = [
- "//ui/base",
- ]
+ deps += [ "//ui/base" ]
}
}