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

Unified Diff: components/update_client/BUILD.gn

Issue 2862723002: Add updater state for Mac. (Closed)
Patch Set: Exclude iOS from the updater state logic. Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/update_client/updater_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/update_client/BUILD.gn
diff --git a/components/update_client/BUILD.gn b/components/update_client/BUILD.gn
index b6061163062afc8da2c857b491363239d1c144a2..0a66f436023eb841fd3bbe97e776cd593e5d58fd 100644
--- a/components/update_client/BUILD.gn
+++ b/components/update_client/BUILD.gn
@@ -47,6 +47,7 @@ static_library("update_client") {
"update_response.h",
"updater_state.cc",
"updater_state.h",
+ "updater_state_mac.mm",
"updater_state_win.cc",
"url_fetcher_downloader.cc",
"url_fetcher_downloader.h",
@@ -68,6 +69,10 @@ static_library("update_client") {
"//third_party/zlib:zip",
"//url",
]
+ libs = []
+ if (is_mac) {
+ libs += [ "OpenDirectory.framework" ]
+ }
}
static_library("test_support") {
« no previous file with comments | « no previous file | components/update_client/updater_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698