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

Side by Side 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 unified diff | Download patch
OLDNEW
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 static_library("mac_installer_base") { 7 static_library("mac_installer_base") {
8 sources = [ 8 sources = [
9 "Downloader.m", 9 "Downloader.m",
10 "MainDelegate.m", 10 "MainDelegate.m",
11 "NetworkCommunication.m", 11 "NetworkCommunication.m",
12 "OmahaCommunication.m", 12 "OmahaCommunication.m",
13 "OmahaXMLParser.m", 13 "OmahaXMLParser.m",
14 "OmahaXMLRequest.m", 14 "OmahaXMLRequest.m",
15 "SystemInfo.m", 15 "SystemInfo.m",
16 "Unpacker.m",
16 ] 17 ]
17 } 18 }
18 19
19 executable("mac_installer") { 20 executable("mac_installer") {
20 sources = [ 21 sources = [
21 "main.m", 22 "main.m",
22 ] 23 ]
23 deps = [ 24 deps = [
24 ":mac_installer_base", 25 ":mac_installer_base",
25 ] 26 ]
26 libs = [ "Foundation.framework" ] 27 libs = [
28 "Cocoa.framework",
29 "DiskArbitration.framework",
30 ]
27 } 31 }
28 32
29 test("mac_installer_test") { 33 test("mac_installer_test") {
30 sources = [ 34 sources = [
31 "testing/OmahaXMLRequest_test.mm", 35 "testing/OmahaXMLRequest_test.mm",
32 "testing/SystemInfo_test.mm", 36 "testing/SystemInfo_test.mm",
37 "testing/Unpacker_test.mm",
33 ] 38 ]
34 deps = [ 39 deps = [
35 ":mac_installer_base", 40 ":mac_installer_base",
36 "//base:base", 41 "//base:base",
37 "//base/test:run_all_unittests", 42 "//base/test:run_all_unittests",
38 "//testing/gtest:gtest", 43 "//testing/gtest:gtest",
39 ] 44 ]
40 libs = [ "Foundation.framework" ] 45 libs = [
46 "Cocoa.framework",
47 "DiskArbitration.framework",
48 ]
41 } 49 }
OLDNEW
« 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