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

Side by Side Diff: components/sessions/BUILD.gn

Issue 1467803003: Get 'gn_all' building on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ios arm build, non-ios build Created 5 years 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 | « components/search_engines/BUILD.gn ('k') | components/signin/ios/browser/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 } 7 }
8 8
9 config("implementation") { 9 config("implementation") {
10 defines = [ "SESSIONS_IMPLEMENTATION" ] 10 defines = [ "SESSIONS_IMPLEMENTATION" ]
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ] 173 ]
174 } 174 }
175 175
176 public_deps = [ 176 public_deps = [
177 ":sessions", 177 ":sessions",
178 ] 178 ]
179 179
180 deps = [ 180 deps = [
181 ":test_support", 181 ":test_support",
182 "//base/test:test_support", 182 "//base/test:test_support",
183 "//content/public/common",
184 "//sync", 183 "//sync",
185 "//testing/gtest", 184 "//testing/gtest",
186 "//ui/base", # For page transition types. 185 "//ui/base", # For page transition types.
187 "//url", 186 "//url",
188 ] 187 ]
188
189 if (!is_ios) {
190 deps += [ "//content/public/common" ]
191 }
189 } 192 }
OLDNEW
« no previous file with comments | « components/search_engines/BUILD.gn ('k') | components/signin/ios/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698