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

Side by Side Diff: ios/chrome/browser/ui/downloads/BUILD.gn

Issue 2731553005: Introduced StoreKitTabHelper class (Closed)
Patch Set: rebased and address sdefresne's 2nd round comments Created 3 years, 9 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("//build/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 6
7 bundle_data("assets") { 7 bundle_data("assets") {
8 sources = [ 8 sources = [
9 "resources/download_manager_assets.xcassets/Contents.json", 9 "resources/download_manager_assets.xcassets/Contents.json",
10 "resources/download_manager_assets.xcassets/error_icon.imageset/Contents.jso n", 10 "resources/download_manager_assets.xcassets/error_icon.imageset/Contents.jso n",
(...skipping 29 matching lines...) Expand all
40 ] 40 ]
41 deps = [ 41 deps = [
42 ":assets", 42 ":assets",
43 ":download_manager_controller_xib", 43 ":download_manager_controller_xib",
44 "//base", 44 "//base",
45 "//components/strings", 45 "//components/strings",
46 "//ios/chrome/app/strings", 46 "//ios/chrome/app/strings",
47 "//ios/chrome/browser", 47 "//ios/chrome/browser",
48 "//ios/chrome/browser/native_app_launcher", 48 "//ios/chrome/browser/native_app_launcher",
49 "//ios/chrome/browser/native_app_launcher:native_app_launcher_internal", 49 "//ios/chrome/browser/native_app_launcher:native_app_launcher_internal",
50 "//ios/chrome/browser/store_kit",
50 "//ios/chrome/browser/ui", 51 "//ios/chrome/browser/ui",
51 "//ios/chrome/browser/ui/alert_coordinator", 52 "//ios/chrome/browser/ui/alert_coordinator",
52 "//ios/chrome/browser/ui/colors", 53 "//ios/chrome/browser/ui/colors",
53 "//ios/chrome/browser/web:web_internal", 54 "//ios/chrome/browser/web:web_internal",
54 "//ios/public/provider/chrome/browser", 55 "//ios/public/provider/chrome/browser",
55 "//ios/public/provider/chrome/browser/native_app_launcher", 56 "//ios/public/provider/chrome/browser/native_app_launcher",
56 "//ios/third_party/material_components_ios", 57 "//ios/third_party/material_components_ios",
57 "//ios/third_party/material_roboto_font_loader_ios", 58 "//ios/third_party/material_roboto_font_loader_ios",
58 "//ios/web", 59 "//ios/web",
59 "//ios/web:core", 60 "//ios/web:core",
60 "//net", 61 "//net",
61 "//ui/base", 62 "//ui/base",
62 "//ui/gfx", 63 "//ui/gfx",
63 ] 64 ]
64 libs = [ "UIKit.framework" ] 65 libs = [ "UIKit.framework" ]
65 } 66 }
66 67
67 source_set("unit_tests") { 68 source_set("unit_tests") {
68 testonly = true 69 testonly = true
69 sources = [ 70 sources = [
70 "download_manager_controller_unittest.mm", 71 "download_manager_controller_unittest.mm",
71 ] 72 ]
72 deps = [ 73 deps = [
73 ":downloads", 74 ":downloads",
74 "//base", 75 "//base",
75 "//ios/chrome/browser", 76 "//ios/chrome/browser",
77 "//ios/chrome/browser/store_kit",
76 "//ios/web:test_support", 78 "//ios/web:test_support",
77 "//net:test_support", 79 "//net:test_support",
78 "//testing/gtest", 80 "//testing/gtest",
79 ] 81 ]
80 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698