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

Side by Side Diff: ios/chrome/browser/BUILD.gn

Issue 2517623002: [ObjC ARC] Converts ios/chrome/browser:about_flags to ARC.Automatically generated ARCMigrate comm… (Closed)
Patch Set: Comiole guard fixed Created 4 years, 1 month 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 | « no previous file | ios/chrome/browser/about_flags.mm » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/features.gni") 5 import("//build/config/features.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 declare_args() { 8 declare_args() {
9 google_test_gaia_client_id = "" 9 google_test_gaia_client_id = ""
10 google_test_gaia_client_secret = "" 10 google_test_gaia_client_secret = ""
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 171
172 if (enable_rlz) { 172 if (enable_rlz) {
173 deps += [ "//ios/chrome/browser/rlz" ] 173 deps += [ "//ios/chrome/browser/rlz" ]
174 } 174 }
175 } 175 }
176 176
177 # This is a separate target so that the 'defines' does not leak to the 177 # This is a separate target so that the 'defines' does not leak to the
178 # other files (which would increase the compilation time when changing 178 # other files (which would increase the compilation time when changing
179 # the value). 179 # the value).
180 source_set("about_flags") { 180 source_set("about_flags") {
181 configs += [ "//build/config/compiler:enable_arc" ]
181 sources = [ 182 sources = [
182 "about_flags.h", 183 "about_flags.h",
183 "about_flags.mm", 184 "about_flags.mm",
184 ] 185 ]
185 186
186 deps = [ 187 deps = [
187 ":browser", 188 ":browser",
188 "//base", 189 "//base",
189 "//components/autofill/core/common", 190 "//components/autofill/core/common",
190 "//components/dom_distiller/core", 191 "//components/dom_distiller/core",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "//components/proxy_config", 232 "//components/proxy_config",
232 "//components/ssl_config", 233 "//components/ssl_config",
233 "//components/variations", 234 "//components/variations",
234 "//ios/web:test_support", 235 "//ios/web:test_support",
235 "//net", 236 "//net",
236 "//net:test_support", 237 "//net:test_support",
237 "//testing/gtest", 238 "//testing/gtest",
238 "//url", 239 "//url",
239 ] 240 ]
240 } 241 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/about_flags.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698