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

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

Issue 2934463002: [iOS] Add experimental new keyboard accessory view. (Closed)
Patch Set: Rebased. 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
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",
11 "resources/collapse_incognito@2x.png", 11 "resources/collapse_incognito@2x.png",
12 "resources/collapse_incognito@3x.png", 12 "resources/collapse_incognito@3x.png",
13 "resources/collapse_pressed.png", 13 "resources/collapse_pressed.png",
14 "resources/collapse_pressed@2x.png", 14 "resources/collapse_pressed@2x.png",
15 "resources/collapse_pressed@3x.png", 15 "resources/collapse_pressed@3x.png",
16 "resources/collapse_pressed_incognito.png", 16 "resources/collapse_pressed_incognito.png",
17 "resources/collapse_pressed_incognito@2x.png", 17 "resources/collapse_pressed_incognito@2x.png",
18 "resources/collapse_pressed_incognito@3x.png", 18 "resources/collapse_pressed_incognito@3x.png",
19 "resources/incognito_marker_typing.png", 19 "resources/incognito_marker_typing.png",
20 "resources/incognito_marker_typing@2x.png", 20 "resources/incognito_marker_typing@2x.png",
21 "resources/incognito_marker_typing@3x.png", 21 "resources/incognito_marker_typing@3x.png",
22 "resources/qr_scanner_keyboard_accessory.png",
23 "resources/qr_scanner_keyboard_accessory@2x.png",
24 "resources/qr_scanner_keyboard_accessory@3x.png",
22 "resources/toolbar_dark_newtab.png", 25 "resources/toolbar_dark_newtab.png",
23 "resources/toolbar_dark_newtab@2x.png", 26 "resources/toolbar_dark_newtab@2x.png",
24 "resources/toolbar_dark_newtab@3x.png", 27 "resources/toolbar_dark_newtab@3x.png",
25 "resources/toolbar_dark_newtab_active.png", 28 "resources/toolbar_dark_newtab_active.png",
26 "resources/toolbar_dark_newtab_active@2x.png", 29 "resources/toolbar_dark_newtab_active@2x.png",
27 "resources/toolbar_dark_newtab_active@3x.png", 30 "resources/toolbar_dark_newtab_active@3x.png",
28 "resources/toolbar_dark_newtab_incognito.png", 31 "resources/toolbar_dark_newtab_incognito.png",
29 "resources/toolbar_dark_newtab_incognito@2x.png", 32 "resources/toolbar_dark_newtab_incognito@2x.png",
30 "resources/toolbar_dark_newtab_incognito@3x.png", 33 "resources/toolbar_dark_newtab_incognito@3x.png",
31 "resources/toolbar_dark_newtab_incognito_active.png", 34 "resources/toolbar_dark_newtab_incognito_active.png",
32 "resources/toolbar_dark_newtab_incognito_active@2x.png", 35 "resources/toolbar_dark_newtab_incognito_active@2x.png",
33 "resources/toolbar_dark_newtab_incognito_active@3x.png", 36 "resources/toolbar_dark_newtab_incognito_active@3x.png",
34 ] 37 ]
35 outputs = [ 38 outputs = [
36 "{{bundle_resources_dir}}/{{source_file_part}}", 39 "{{bundle_resources_dir}}/{{source_file_part}}",
37 ] 40 ]
38 } 41 }
39 42
40 source_set("toolbar") { 43 source_set("toolbar") {
41 configs += [ "//build/config/compiler:enable_arc" ] 44 configs += [ "//build/config/compiler:enable_arc" ]
42 sources = [ 45 sources = [
43 "keyboard_accessory_view.h", 46 "keyboard_accessory_view.h",
44 "keyboard_accessory_view.mm", 47 "keyboard_accessory_view.mm",
48 "keyboard_accessory_view_protocol.h",
49 "new_keyboard_accessory_view.h",
50 "new_keyboard_accessory_view.mm",
45 "new_tab_button.h", 51 "new_tab_button.h",
46 "new_tab_button.mm", 52 "new_tab_button.mm",
47 "toolbar_button_tints.h", 53 "toolbar_button_tints.h",
48 "toolbar_button_tints.mm", 54 "toolbar_button_tints.mm",
49 "toolbar_controller+protected.h", 55 "toolbar_controller+protected.h",
50 "toolbar_controller.h", 56 "toolbar_controller.h",
51 "toolbar_controller.mm", 57 "toolbar_controller.mm",
52 "toolbar_controller_private.h", 58 "toolbar_controller_private.h",
53 "toolbar_model_delegate_ios.h", 59 "toolbar_model_delegate_ios.h",
54 "toolbar_model_delegate_ios.mm", 60 "toolbar_model_delegate_ios.mm",
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "//ios/chrome/browser/ui/tools_menu", 212 "//ios/chrome/browser/ui/tools_menu",
207 "//ios/chrome/test/app:test_support", 213 "//ios/chrome/test/app:test_support",
208 "//ios/chrome/test/earl_grey:test_support", 214 "//ios/chrome/test/earl_grey:test_support",
209 "//ios/testing/earl_grey:earl_grey_support", 215 "//ios/testing/earl_grey:earl_grey_support",
210 "//ios/third_party/earl_grey", 216 "//ios/third_party/earl_grey",
211 "//ios/web/public/test/http_server", 217 "//ios/web/public/test/http_server",
212 "//ui/base", 218 "//ui/base",
213 ] 219 ]
214 libs = [ "XCTest.framework" ] 220 libs = [ "XCTest.framework" ]
215 } 221 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/fancy_ui/tinted_button.mm ('k') | ios/chrome/browser/ui/toolbar/keyboard_accessory_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698