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

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

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase 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 | « ios/chrome/common/BUILD.gn ('k') | ios/chrome/test/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 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_group") { 5 source_set("app_group") {
6 sources = [ 6 sources = [
7 "app_group_constants.h", 7 "app_group_constants.h",
8 "app_group_constants.mm", 8 "app_group_constants.mm",
9 "app_group_metrics.h", 9 "app_group_metrics.h",
10 "app_group_metrics.mm", 10 "app_group_metrics.mm",
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//base", 14 "//base",
15 "//components/version_info", 15 "//components/version_info",
16 ] 16 ]
17
18 libs = [
19 "CoreGraphics.framework",
20 "Foundation.framework",
21 ]
22 } 17 }
23 18
24 # This target will be included into application extensions and the list 19 # This target will be included into application extensions and the list
25 # of its dependencies must be kept as short as possible. 20 # of its dependencies must be kept as short as possible.
26 source_set("client") { 21 source_set("client") {
27 sources = [ 22 sources = [
28 "app_group_metrics_client.h", 23 "app_group_metrics_client.h",
29 "app_group_metrics_client.mm", 24 "app_group_metrics_client.mm",
30 ] 25 ]
31 26
32 deps = [ 27 deps = [
33 ":app_group", 28 ":app_group",
34 "//base", 29 "//base",
35 ] 30 ]
36 } 31 }
37 32
38 source_set("main_app") { 33 source_set("main_app") {
39 sources = [ 34 sources = [
40 "app_group_metrics_mainapp.h", 35 "app_group_metrics_mainapp.h",
41 "app_group_metrics_mainapp.mm", 36 "app_group_metrics_mainapp.mm",
42 ] 37 ]
43 38
44 deps = [ 39 deps = [
45 ":app_group", 40 ":app_group",
46 "//base", 41 "//base",
47 ] 42 ]
48 } 43 }
OLDNEW
« no previous file with comments | « ios/chrome/common/BUILD.gn ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698