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

Side by Side Diff: ios/web/app/BUILD.gn

Issue 2449903002: [ObjC ARC] Converts ios/web/app to ARC (Closed)
Patch Set: 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/web/app/web_main.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 source_set("app") { 5 source_set("app") {
6 visibility = [ "//ios/web/public/app" ] 6 visibility = [ "//ios/web/public/app" ]
7 7
8 sources = [ 8 sources = [
9 "web_main.mm", 9 "web_main.mm",
10 "web_main_loop.h", 10 "web_main_loop.h",
11 "web_main_loop.mm", 11 "web_main_loop.mm",
12 "web_main_runner.mm", 12 "web_main_runner.mm",
13 ] 13 ]
14 14
15 configs += [ "//build/config/compiler:enable_arc" ]
16
15 deps = [ 17 deps = [
16 "//base", 18 "//base",
17 "//base:i18n", 19 "//base:i18n",
18 "//crypto", 20 "//crypto",
19 "//ios/web", 21 "//ios/web",
20 "//net", 22 "//net",
21 "//ui/base", 23 "//ui/base",
22 "//ui/gfx", 24 "//ui/gfx",
23 "//ui/gfx/geometry", 25 "//ui/gfx/geometry",
24 ] 26 ]
25 27
26 libs = [ 28 libs = [
27 "Foundation.framework", 29 "Foundation.framework",
28 "UIKit.framework", 30 "UIKit.framework",
29 ] 31 ]
30 } 32 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/app/web_main.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698