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

Side by Side Diff: ios/web/ios_web.gyp

Issue 1048613002: Upstream ios/web/web_state/ui support classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clang format Created 5 years, 8 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/web/web_state/ui/crw_context_menu_provider.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'ios_web', 11 'target_name': 'ios_web',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 'ios_web_core', 17 'ios_web_core',
18 'user_agent',
18 '../../base/base.gyp:base', 19 '../../base/base.gyp:base',
19 '../../content/content.gyp:content_browser', 20 '../../content/content.gyp:content_browser',
20 '../../net/net.gyp:net', 21 '../../net/net.gyp:net',
21 '../../ui/base/ui_base.gyp:ui_base', 22 '../../ui/base/ui_base.gyp:ui_base',
22 '../../ui/gfx/gfx.gyp:gfx', 23 '../../ui/gfx/gfx.gyp:gfx',
23 ], 24 ],
24 'sources': [ 25 'sources': [
25 'browser_state.cc', 26 'browser_state.cc',
26 'load_committed_details.cc', 27 'load_committed_details.cc',
27 'navigation/navigation_item_impl.h', 28 'navigation/navigation_item_impl.h',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'web_state/js/crw_js_common_manager.h', 95 'web_state/js/crw_js_common_manager.h',
95 'web_state/js/crw_js_common_manager.mm', 96 'web_state/js/crw_js_common_manager.mm',
96 'web_state/js/crw_js_early_script_manager.mm', 97 'web_state/js/crw_js_early_script_manager.mm',
97 'web_state/js/crw_js_injection_manager.mm', 98 'web_state/js/crw_js_injection_manager.mm',
98 'web_state/js/crw_js_injection_receiver.mm', 99 'web_state/js/crw_js_injection_receiver.mm',
99 'web_state/js/crw_js_message_dynamic_manager.h', 100 'web_state/js/crw_js_message_dynamic_manager.h',
100 'web_state/js/crw_js_message_dynamic_manager.mm', 101 'web_state/js/crw_js_message_dynamic_manager.mm',
101 'web_state/js/crw_js_message_manager.mm', 102 'web_state/js/crw_js_message_manager.mm',
102 'web_state/js/page_script_util.h', 103 'web_state/js/page_script_util.h',
103 'web_state/js/page_script_util.mm', 104 'web_state/js/page_script_util.mm',
105 'web_state/ui/crw_context_menu_provider.h',
106 'web_state/ui/crw_context_menu_provider.mm',
107 'web_state/ui/crw_debug_web_view.h',
108 'web_state/ui/crw_debug_web_view.mm',
109 'web_state/ui/crw_simple_web_view_controller.h',
104 'web_state/web_state_observer.cc', 110 'web_state/web_state_observer.cc',
105 'web_state/web_state_observer_bridge.mm', 111 'web_state/web_state_observer_bridge.mm',
106 'web_state/wk_web_view_ssl_error_util.h', 112 'web_state/wk_web_view_ssl_error_util.h',
107 'web_state/wk_web_view_ssl_error_util.mm', 113 'web_state/wk_web_view_ssl_error_util.mm',
114 'web_state/ui/crw_swipe_recognizer_provider.h',
115 'web_state/ui/crw_touch_tracking_recognizer.h',
116 'web_state/ui/crw_touch_tracking_recognizer.mm',
117 'web_state/ui/crw_ui_simple_web_view_controller.h',
118 'web_state/ui/crw_ui_simple_web_view_controller.mm',
119 'web_state/ui/crw_wk_simple_web_view_controller.h',
120 'web_state/ui/crw_wk_simple_web_view_controller.mm',
121 'web_state/ui/crw_wk_web_view_crash_detector.h',
122 'web_state/ui/crw_wk_web_view_crash_detector.mm',
123 'web_state/ui/web_view_js_utils.h',
124 'web_state/ui/web_view_js_utils.mm',
108 'web_thread.cc', 125 'web_thread.cc',
109 'web_thread_impl.cc', 126 'web_thread_impl.cc',
110 'web_thread_impl.h', 127 'web_thread_impl.h',
111 'web_view_util.h', 128 'web_view_util.h',
112 'web_view_util.mm', 129 'web_view_util.mm',
113 ], 130 ],
131 'link_settings': {
132 'xcode_settings': {
133 'OTHER_LDFLAGS': [
134 '-weak_framework WebKit',
135 ]
136 },
137 },
114 }, 138 },
115 # Target shared by ios_web and CrNet. 139 # Target shared by ios_web and CrNet.
116 { 140 {
117 'target_name': 'ios_web_core', 141 'target_name': 'ios_web_core',
118 'type': 'static_library', 142 'type': 'static_library',
119 'dependencies': [ 143 'dependencies': [
120 '../../base/base.gyp:base', 144 '../../base/base.gyp:base',
121 ], 145 ],
122 'include_dirs': [ 146 'include_dirs': [
123 '../..', 147 '../..',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'public/test/test_browser_state.cc', 194 'public/test/test_browser_state.cc',
171 'public/test/test_browser_state.h', 195 'public/test/test_browser_state.h',
172 'public/test/test_web_state.cc', 196 'public/test/test_web_state.cc',
173 'public/test/test_web_state.h', 197 'public/test/test_web_state.h',
174 'public/test/test_web_thread.h', 198 'public/test/test_web_thread.h',
175 'public/test/test_web_thread_bundle.h', 199 'public/test/test_web_thread_bundle.h',
176 'test/test_web_thread.cc', 200 'test/test_web_thread.cc',
177 'test/test_web_thread_bundle.cc', 201 'test/test_web_thread_bundle.cc',
178 ], 202 ],
179 }, 203 },
204 {
205 'target_name': 'user_agent',
206 'type': 'static_library',
207 'include_dirs': [
208 '../..',
209 ],
210 'dependencies': [
211 '../../base/base.gyp:base'
212 ],
213 'sources': [
214 'public/user_agent.h',
215 'public/user_agent.mm',
216 ],
217 },
180 ], 218 ],
181 } 219 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/web_state/ui/crw_context_menu_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698