OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/util/branding.gni") | 5 import("//build/util/branding.gni") |
6 import("//build/config/mac/rules.gni") | 6 import("//build/config/mac/rules.gni") |
7 | 7 |
8 mac_app_bundle("alert_notification_xpc_service") { | 8 mac_app_bundle("alert_notification_xpc_service") { |
9 output_name = "AlertNotificationService" | 9 output_name = "AlertNotificationService" |
10 package_type = "xpc" | 10 package_type = "xpc" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
42 } | 42 } |
43 } | 43 } |
44 | 44 |
45 static_library("common") { | 45 static_library("common") { |
46 sources = [ | 46 sources = [ |
47 "notification_builder_mac.h", | 47 "notification_builder_mac.h", |
48 "notification_builder_mac.mm", | 48 "notification_builder_mac.mm", |
49 "notification_constants_mac.h", | 49 "notification_constants_mac.h", |
50 "notification_constants_mac.mm", | 50 "notification_constants_mac.mm", |
51 "notification_delivery.h", | 51 "notification_delivery.h", |
52 "notification_private_mac.h", | |
Peter Beverloo
2016/10/06 14:35:19
delete
Miguel Garcia
2016/10/07 13:42:24
Done.
| |
52 "notification_response_builder_mac.h", | 53 "notification_response_builder_mac.h", |
53 "notification_response_builder_mac.mm", | 54 "notification_response_builder_mac.mm", |
54 ] | 55 ] |
55 | 56 |
56 deps = [ | 57 deps = [ |
57 "//base:base", | 58 "//base:base", |
58 ] | 59 ] |
59 } | 60 } |
OLD | NEW |