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

Unified Diff: chrome/installer/mac/app/BUILD.gn

Issue 2203583002: Added unpacking step (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed some of Sidney's comments for the moment Created 4 years, 4 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 | chrome/installer/mac/app/MainDelegate.h » ('j') | chrome/installer/mac/app/MainDelegate.m » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/mac/app/BUILD.gn
diff --git a/chrome/installer/mac/app/BUILD.gn b/chrome/installer/mac/app/BUILD.gn
index c5545e8510a96e542518cb51db0ac4672874fc07..8ba533dd5b51edfebb62f6a946965a7bd761179c 100644
--- a/chrome/installer/mac/app/BUILD.gn
+++ b/chrome/installer/mac/app/BUILD.gn
@@ -13,6 +13,7 @@ static_library("mac_installer_base") {
"OmahaXMLParser.m",
"OmahaXMLRequest.m",
"SystemInfo.m",
+ "Unpacker.m",
]
}
@@ -23,13 +24,17 @@ executable("mac_installer") {
deps = [
":mac_installer_base",
]
- libs = [ "Foundation.framework" ]
+ libs = [
+ "Cocoa.framework",
+ "DiskArbitration.framework",
+ ]
}
test("mac_installer_test") {
sources = [
"testing/OmahaXMLRequest_test.mm",
"testing/SystemInfo_test.mm",
+ "testing/Unpacker_test.mm",
]
deps = [
":mac_installer_base",
@@ -37,5 +42,8 @@ test("mac_installer_test") {
"//base/test:run_all_unittests",
"//testing/gtest:gtest",
]
- libs = [ "Foundation.framework" ]
+ libs = [
+ "Cocoa.framework",
+ "DiskArbitration.framework",
+ ]
}
« no previous file with comments | « no previous file | chrome/installer/mac/app/MainDelegate.h » ('j') | chrome/installer/mac/app/MainDelegate.m » ('J')

Powered by Google App Engine
This is Rietveld 408576698