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

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

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (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
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 bundle_data("resources") { 5 bundle_data("resources") {
6 sources = [ 6 sources = [
7 "resources/side_swipe_navigation_back.png", 7 "resources/side_swipe_navigation_back.png",
8 "resources/side_swipe_navigation_back@2x.png", 8 "resources/side_swipe_navigation_back@2x.png",
9 "resources/side_swipe_navigation_back@3x.png", 9 "resources/side_swipe_navigation_back@3x.png",
10 "resources/side_swipe_navigation_content_shadow.png", 10 "resources/side_swipe_navigation_content_shadow.png",
11 "resources/side_swipe_navigation_content_shadow@2x.png", 11 "resources/side_swipe_navigation_content_shadow@2x.png",
12 "resources/side_swipe_navigation_content_shadow@3x.png", 12 "resources/side_swipe_navigation_content_shadow@3x.png",
13 ] 13 ]
14 outputs = [ 14 outputs = [
15 "{{bundle_resources_dir}}/{{source_file_part}}", 15 "{{bundle_resources_dir}}/{{source_file_part}}",
16 ] 16 ]
17 } 17 }
18
19 source_set("side_swipe") {
20 sources = [
21 "card_side_swipe_view.h",
22 "card_side_swipe_view.mm",
23 "history_side_swipe_provider.h",
24 "history_side_swipe_provider.mm",
25 "side_swipe_controller.h",
26 "side_swipe_controller.mm",
27 "side_swipe_navigation_view.h",
28 "side_swipe_navigation_view.mm",
29 "side_swipe_util.h",
30 "side_swipe_util.mm",
31 ]
32 deps = [
33 "//base",
34 "//components/reading_list/core",
35 "//components/reading_list/ios",
36 "//ios/chrome/app/theme",
37 "//ios/chrome/browser",
38 "//ios/chrome/browser/browser_state",
39 "//ios/chrome/browser/reading_list",
40 "//ios/chrome/browser/snapshots",
41 "//ios/chrome/browser/tabs",
42 "//ios/chrome/browser/ui",
43 "//ios/chrome/browser/ui/ntp",
44 "//ios/chrome/browser/ui/side_swipe:resources",
45 "//ios/chrome/browser/ui/tabs",
46 "//ios/chrome/common",
47 "//ios/web",
48 "//ui/base",
49 "//url",
50 ]
51 public_deps = [
52 "//ios/chrome/browser/infobars",
53 ]
54 libs = [ "UIKit.framework" ]
55 }
56
57 source_set("unit_tests") {
58 testonly = true
59 sources = [
60 "side_swipe_controller_unittest.mm",
61 ]
62 deps = [
63 ":side_swipe",
64 "//base",
65 "//ios/chrome/browser/browser_state:test_support",
66 "//ios/chrome/browser/ui/toolbar",
67 "//ios/web:test_support",
68 "//testing/gtest",
69 "//third_party/ocmock",
70 ]
71 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/settings/utils/BUILD.gn ('k') | ios/chrome/browser/ui/stack_view/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698