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

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

Issue 2503483002: [ObjC ARC] Converts ios/chrome/common 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/chrome/common/channel_info.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("common") { 5 source_set("common") {
6 sources = [ 6 sources = [
7 "channel_info.h", 7 "channel_info.h",
8 "channel_info.mm", 8 "channel_info.mm",
9 "material_timing.h", 9 "material_timing.h",
10 "material_timing.mm", 10 "material_timing.mm",
11 "string_util.h", 11 "string_util.h",
12 "string_util.mm", 12 "string_util.mm",
13 "x_callback_url.cc", 13 "x_callback_url.cc",
14 "x_callback_url.h", 14 "x_callback_url.h",
15 ] 15 ]
16 16
17 configs += [ "//build/config/compiler:enable_arc" ]
18
17 deps = [ 19 deps = [
18 "//base", 20 "//base",
19 "//components/version_info", 21 "//components/version_info",
20 "//ios/chrome/common/app_group:main_app", 22 "//ios/chrome/common/app_group:main_app",
21 "//ios/chrome/common/physical_web:physical_web", 23 "//ios/chrome/common/physical_web:physical_web",
22 "//net", 24 "//net",
23 "//url", 25 "//url",
24 ] 26 ]
25 27
26 libs = [ "QuartzCore.framework" ] 28 libs = [ "QuartzCore.framework" ]
27 } 29 }
28 30
29 source_set("unit_tests") { 31 source_set("unit_tests") {
30 testonly = true 32 testonly = true
31 sources = [ 33 sources = [
32 "string_util_unittest.mm", 34 "string_util_unittest.mm",
33 "x_callback_url_unittest.cc", 35 "x_callback_url_unittest.cc",
34 ] 36 ]
35 deps = [ 37 deps = [
36 ":common", 38 ":common",
37 "//base", 39 "//base",
38 "//testing/gtest", 40 "//testing/gtest",
39 ] 41 ]
40 } 42 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/common/channel_info.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698