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

Side by Side Diff: ios/chrome/browser/upgrade/BUILD.gn

Issue 2568003005: [ios] Adds code for Omaha and the upgrade center. (Closed)
Patch Set: Created 4 years 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
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("upgrade") {
6 sources = [
7 "upgrade_center.h",
8 "upgrade_center.mm",
9 "upgrade_recommended_details.h",
10 ]
11 deps = [
12 "//base",
13 "//components/infobars/core",
14 "//components/version_info",
15 "//ios/chrome/app/strings",
16 "//ios/chrome/browser",
17 "//ios/chrome/browser/ui/commands",
18 "//ios/chrome/browser/ui/infobars:resources",
19 "//ios/web",
20 "//net",
21 "//ui/base",
22 "//ui/gfx",
23 "//url",
24 ]
25 libs = [ "UIKit.framework" ]
26 }
27
28 source_set("unit_tests") {
29 testonly = true
30 sources = [
31 "upgrade_center_unittest.mm",
32 ]
33 deps = [
34 ":upgrade",
35 "//base",
36 "//testing/gtest",
37 ]
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698