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

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

Issue 2933123002: [ObjC ARC] Converts ios/chrome/browser/ui/overscroll_actions:overscroll_actions to ARC. (Closed)
Patch Set: 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/ptr_close.png", 7 "resources/ptr_close.png",
8 "resources/ptr_close@2x.png", 8 "resources/ptr_close@2x.png",
9 "resources/ptr_close@3x.png", 9 "resources/ptr_close@3x.png",
10 "resources/ptr_close_active.png", 10 "resources/ptr_close_active.png",
(...skipping 11 matching lines...) Expand all
22 "resources/ptr_reload_active.png", 22 "resources/ptr_reload_active.png",
23 "resources/ptr_reload_active@2x.png", 23 "resources/ptr_reload_active@2x.png",
24 "resources/ptr_reload_active@3x.png", 24 "resources/ptr_reload_active@3x.png",
25 ] 25 ]
26 outputs = [ 26 outputs = [
27 "{{bundle_resources_dir}}/{{source_file_part}}", 27 "{{bundle_resources_dir}}/{{source_file_part}}",
28 ] 28 ]
29 } 29 }
30 30
31 source_set("overscroll_actions") { 31 source_set("overscroll_actions") {
32 configs += [ "//build/config/compiler:enable_arc" ]
32 sources = [ 33 sources = [
33 "overscroll_actions_controller.h", 34 "overscroll_actions_controller.h",
34 "overscroll_actions_controller.mm", 35 "overscroll_actions_controller.mm",
35 "overscroll_actions_gesture_recognizer.h", 36 "overscroll_actions_gesture_recognizer.h",
36 "overscroll_actions_gesture_recognizer.mm", 37 "overscroll_actions_gesture_recognizer.mm",
37 "overscroll_actions_view.h", 38 "overscroll_actions_view.h",
38 "overscroll_actions_view.mm", 39 "overscroll_actions_view.mm",
39 ] 40 ]
40 deps = [ 41 deps = [
41 ":resources", 42 ":resources",
42 "//base", 43 "//base",
43 "//ios/chrome/app/theme", 44 "//ios/chrome/app/theme",
44 "//ios/chrome/browser/ui", 45 "//ios/chrome/browser/ui",
45 "//ios/chrome/browser/ui/static_content", 46 "//ios/chrome/browser/ui/static_content",
46 "//ios/chrome/browser/ui/toolbar", 47 "//ios/chrome/browser/ui/toolbar",
47 "//ios/chrome/browser/ui/util", 48 "//ios/chrome/browser/ui/util",
48 "//ios/chrome/browser/ui/voice", 49 "//ios/chrome/browser/ui/voice",
49 "//ios/web", 50 "//ios/web",
50 ] 51 ]
51 allow_circular_includes_from = [ "//ios/chrome/browser/ui/static_content" ] 52 allow_circular_includes_from = [ "//ios/chrome/browser/ui/static_content" ]
52 libs = [ 53 libs = [
53 "QuartzCore.framework", 54 "QuartzCore.framework",
54 "UIKit.framework", 55 "UIKit.framework",
55 ] 56 ]
56 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698