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

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

Issue 2914193002: [iOS] Factor out the KeyboardAccessoryView. (Closed)
Patch Set: Addressed comments and broke retain cycle. Created 3 years, 6 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
« no previous file with comments | « no previous file | ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h » ('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/collapse.png", 7 "resources/collapse.png",
8 "resources/collapse@2x.png", 8 "resources/collapse@2x.png",
9 "resources/collapse@3x.png", 9 "resources/collapse@3x.png",
10 "resources/collapse_incognito.png", 10 "resources/collapse_incognito.png",
(...skipping 22 matching lines...) Expand all
33 "resources/toolbar_dark_newtab_incognito_active@3x.png", 33 "resources/toolbar_dark_newtab_incognito_active@3x.png",
34 ] 34 ]
35 outputs = [ 35 outputs = [
36 "{{bundle_resources_dir}}/{{source_file_part}}", 36 "{{bundle_resources_dir}}/{{source_file_part}}",
37 ] 37 ]
38 } 38 }
39 39
40 source_set("toolbar") { 40 source_set("toolbar") {
41 configs += [ "//build/config/compiler:enable_arc" ] 41 configs += [ "//build/config/compiler:enable_arc" ]
42 sources = [ 42 sources = [
43 "keyboard_accessory_view.h",
44 "keyboard_accessory_view.mm",
43 "new_tab_button.h", 45 "new_tab_button.h",
44 "new_tab_button.mm", 46 "new_tab_button.mm",
45 "toolbar_button_tints.h", 47 "toolbar_button_tints.h",
46 "toolbar_button_tints.mm", 48 "toolbar_button_tints.mm",
47 "toolbar_controller+protected.h", 49 "toolbar_controller+protected.h",
48 "toolbar_controller.h", 50 "toolbar_controller.h",
49 "toolbar_controller.mm", 51 "toolbar_controller.mm",
50 "toolbar_controller_private.h", 52 "toolbar_controller_private.h",
51 "toolbar_model_delegate_ios.h", 53 "toolbar_model_delegate_ios.h",
52 "toolbar_model_delegate_ios.mm", 54 "toolbar_model_delegate_ios.mm",
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "//ios/chrome/browser/ui/tools_menu", 205 "//ios/chrome/browser/ui/tools_menu",
204 "//ios/chrome/test/app:test_support", 206 "//ios/chrome/test/app:test_support",
205 "//ios/chrome/test/earl_grey:test_support", 207 "//ios/chrome/test/earl_grey:test_support",
206 "//ios/testing/earl_grey:earl_grey_support", 208 "//ios/testing/earl_grey:earl_grey_support",
207 "//ios/third_party/earl_grey", 209 "//ios/third_party/earl_grey",
208 "//ios/web:test_support", 210 "//ios/web:test_support",
209 "//ui/base", 211 "//ui/base",
210 ] 212 ]
211 libs = [ "XCTest.framework" ] 213 libs = [ "XCTest.framework" ]
212 } 214 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698