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

Side by Side Diff: ios/chrome/browser/ui/find_bar/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
« no previous file with comments | « ios/chrome/browser/ui/fancy_ui/BUILD.gn ('k') | ios/chrome/browser/ui/first_run/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/find_bg@2x~ipad.png", 7 "resources/find_bg@2x~ipad.png",
8 "resources/find_bg~ipad.png", 8 "resources/find_bg~ipad.png",
9 "resources/find_close.png", 9 "resources/find_close.png",
10 "resources/find_close@2x.png", 10 "resources/find_close@2x.png",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "resources/find_prev_pressed@2x.png", 49 "resources/find_prev_pressed@2x.png",
50 "resources/find_prev_pressed@3x.png", 50 "resources/find_prev_pressed@3x.png",
51 "resources/find_prev_pressed_incognito.png", 51 "resources/find_prev_pressed_incognito.png",
52 "resources/find_prev_pressed_incognito@2x.png", 52 "resources/find_prev_pressed_incognito@2x.png",
53 "resources/find_prev_pressed_incognito@3x.png", 53 "resources/find_prev_pressed_incognito@3x.png",
54 ] 54 ]
55 outputs = [ 55 outputs = [
56 "{{bundle_resources_dir}}/{{source_file_part}}", 56 "{{bundle_resources_dir}}/{{source_file_part}}",
57 ] 57 ]
58 } 58 }
59
60 source_set("find_bar") {
61 sources = [
62 "find_bar_controller_ios.h",
63 "find_bar_controller_ios.mm",
64 "find_bar_touch_forwarding_view.h",
65 "find_bar_touch_forwarding_view.mm",
66 "find_bar_view.h",
67 "find_bar_view.mm",
68 ]
69 deps = [
70 "//base",
71 "//base:i18n",
72 "//components/strings",
73 "//ios/chrome/app/strings",
74 "//ios/chrome/browser/find_in_page",
75 "//ios/chrome/browser/ui",
76 "//ios/chrome/browser/ui/commands",
77 "//ios/chrome/browser/ui/find_bar:resources",
78 "//ios/third_party/material_components_ios",
79 "//ui/base",
80 "//ui/gfx",
81 ]
82 libs = [ "UIKit.framework" ]
83 }
84
85 source_set("eg_tests") {
86 testonly = true
87 sources = [
88 "find_in_page_egtest.mm",
89 ]
90 deps = [
91 "//base",
92 "//components/strings",
93 "//ios/chrome/app/strings",
94 "//ios/chrome/browser/find_in_page",
95 "//ios/chrome/browser/ui/find_bar",
96 "//ios/chrome/browser/ui/tools_menu",
97 "//ios/chrome/test/app:test_support",
98 "//ios/chrome/test/earl_grey:test_support",
99 "//ios/testing:ios_test_support",
100 "//ios/web:test_support",
101 "//ui/base",
102 ]
103 libs = [ "XCTest.framework" ]
104 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/fancy_ui/BUILD.gn ('k') | ios/chrome/browser/ui/first_run/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698