OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("app_group") { |
| 6 sources = [ |
| 7 "app_group_constants.h", |
| 8 "app_group_constants.mm", |
| 9 "app_group_metrics.h", |
| 10 "app_group_metrics.mm", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//components/version_info", |
| 16 ] |
| 17 |
| 18 libs = [ |
| 19 "CoreGraphics.framework", |
| 20 "Foundation.framework", |
| 21 ] |
| 22 } |
| 23 |
| 24 # This target will be included into application extensions and the list |
| 25 # of its dependencies must be kept as short as possible. |
| 26 source_set("client") { |
| 27 sources = [ |
| 28 "app_group_metrics_client.h", |
| 29 "app_group_metrics_client.mm", |
| 30 ] |
| 31 |
| 32 deps = [ |
| 33 ":app_group", |
| 34 ] |
| 35 } |
| 36 |
| 37 source_set("main_app") { |
| 38 sources = [ |
| 39 "app_group_metrics_mainapp.h", |
| 40 "app_group_metrics_mainapp.mm", |
| 41 ] |
| 42 |
| 43 deps = [ |
| 44 ":app_group", |
| 45 ] |
| 46 } |
OLD | NEW |