| OLD | NEW |
| 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/ios/ios_sdk.gni") | 5 import("//build/config/ios/ios_sdk.gni") |
| 6 | 6 |
| 7 source_set("app_group") { | 7 source_set("app_group") { |
| 8 configs += [ "//build/config/compiler:enable_arc" ] | 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 9 sources = [ | 9 sources = [ |
| 10 "app_group_constants.h", | 10 "app_group_constants.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "app_group_metrics_client.mm", | 29 "app_group_metrics_client.mm", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":app_group", | 33 ":app_group", |
| 34 "//base", | 34 "//base", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 source_set("main_app") { | 38 source_set("main_app") { |
| 39 configs += [ "//build/config/compiler:enable_arc" ] |
| 39 sources = [ | 40 sources = [ |
| 40 "app_group_metrics_mainapp.h", | 41 "app_group_metrics_mainapp.h", |
| 41 "app_group_metrics_mainapp.mm", | 42 "app_group_metrics_mainapp.mm", |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 deps = [ | 45 deps = [ |
| 45 ":app_group", | 46 ":app_group", |
| 46 "//base", | 47 "//base", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| OLD | NEW |