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

Side by Side Diff: content/content_common.gypi

Issue 201473002: Move webcursors code from webkit/ to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
11 '../third_party/icu/icu.gyp:icuuc', 11 '../third_party/icu/icu.gyp:icuuc',
12 '../third_party/libjingle/libjingle.gyp:libjingle', 12 '../third_party/libjingle/libjingle.gyp:libjingle',
13 '../ui/accessibility/accessibility.gyp:accessibility', 13 '../ui/accessibility/accessibility.gyp:accessibility',
14 '../ui/base/ui_base.gyp:ui_base', 14 '../ui/base/ui_base.gyp:ui_base',
15 '../ui/gfx/gfx.gyp:gfx', 15 '../ui/gfx/gfx.gyp:gfx',
16 '../ui/gfx/gfx.gyp:gfx_geometry', 16 '../ui/gfx/gfx.gyp:gfx_geometry',
17 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 17 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
18 '../url/url.gyp:url_lib', 18 '../url/url.gyp:url_lib',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '..', 21 '..',
22 ], 22 ],
23 'export_dependent_settings': [ 23 'export_dependent_settings': [
24 '../base/base.gyp:base', 24 '../base/base.gyp:base',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'public/common/assert_matching_enums.cc', 27 'public/common/assert_matching_enums.cc',
28 'public/common/bindings_policy.h', 28 'public/common/bindings_policy.h',
29 'public/common/browser_plugin_permission_type.h',
29 'public/common/child_process_host.h', 30 'public/common/child_process_host.h',
30 'public/common/child_process_host_delegate.cc', 31 'public/common/child_process_host_delegate.cc',
31 'public/common/child_process_host_delegate.h', 32 'public/common/child_process_host_delegate.h',
32 'public/common/child_process_sandbox_support_linux.h', 33 'public/common/child_process_sandbox_support_linux.h',
33 'public/common/color_suggestion.cc', 34 'public/common/color_suggestion.cc',
34 'public/common/color_suggestion.h', 35 'public/common/color_suggestion.h',
36 'public/common/common_param_traits.cc',
37 'public/common/common_param_traits.h',
38 'public/common/common_param_traits_macros.h',
35 'public/common/console_message_level.h', 39 'public/common/console_message_level.h',
40 'public/common/content_client.cc',
41 'public/common/content_client.h',
36 'public/common/content_constants.cc', 42 'public/common/content_constants.cc',
37 'public/common/content_constants.h', 43 'public/common/content_constants.h',
38 'public/common/content_descriptors.h', 44 'public/common/content_descriptors.h',
39 'public/common/content_ipc_logging.h', 45 'public/common/content_ipc_logging.h',
40 'public/common/content_paths.h', 46 'public/common/content_paths.h',
41 'public/common/content_switches.cc', 47 'public/common/content_switches.cc',
42 'public/common/content_switches.h', 48 'public/common/content_switches.h',
43 'public/common/context_menu_params.cc', 49 'public/common/context_menu_params.cc',
44 'public/common/context_menu_params.h', 50 'public/common/context_menu_params.h',
45 'public/common/drop_data.cc', 51 'public/common/drop_data.cc',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'public/common/top_controls_state.h', 105 'public/common/top_controls_state.h',
100 'public/common/top_controls_state_list.h', 106 'public/common/top_controls_state_list.h',
101 'public/common/url_constants.cc', 107 'public/common/url_constants.cc',
102 'public/common/url_constants.h', 108 'public/common/url_constants.h',
103 'public/common/url_fetcher.h', 109 'public/common/url_fetcher.h',
104 'public/common/url_utils.cc', 110 'public/common/url_utils.cc',
105 'public/common/url_utils.h', 111 'public/common/url_utils.h',
106 'public/common/user_agent.h', 112 'public/common/user_agent.h',
107 'public/common/webplugininfo.cc', 113 'public/common/webplugininfo.cc',
108 'public/common/webplugininfo.h', 114 'public/common/webplugininfo.h',
115 'public/common/window_container_type.cc',
116 'public/common/window_container_type.h',
109 'public/common/zygote_fork_delegate_linux.h', 117 'public/common/zygote_fork_delegate_linux.h',
110 'common/accessibility_messages.h', 118 'common/accessibility_messages.h',
111 'common/all_messages.h', 119 'common/all_messages.h',
112 'common/android/address_parser.cc', 120 'common/android/address_parser.cc',
113 'common/android/address_parser.h', 121 'common/android/address_parser.h',
114 'common/android/address_parser_internal.cc', 122 'common/android/address_parser_internal.cc',
115 'common/android/address_parser_internal.h', 123 'common/android/address_parser_internal.h',
116 'common/android/common_jni_registrar.cc', 124 'common/android/common_jni_registrar.cc',
117 'common/android/common_jni_registrar.h', 125 'common/android/common_jni_registrar.h',
118 'common/android/device_telephony_info.cc', 126 'common/android/device_telephony_info.cc',
(...skipping 23 matching lines...) Expand all
142 'common/content_message_generator.cc', 150 'common/content_message_generator.cc',
143 'common/content_message_generator.h', 151 'common/content_message_generator.h',
144 'common/content_param_traits.cc', 152 'common/content_param_traits.cc',
145 'common/content_param_traits.h', 153 'common/content_param_traits.h',
146 'common/content_param_traits_macros.h', 154 'common/content_param_traits_macros.h',
147 'common/content_paths.cc', 155 'common/content_paths.cc',
148 'common/content_switches_internal.cc', 156 'common/content_switches_internal.cc',
149 'common/content_switches_internal.h', 157 'common/content_switches_internal.h',
150 'common/cookie_data.cc', 158 'common/cookie_data.cc',
151 'common/cookie_data.h', 159 'common/cookie_data.h',
160 'common/cursors/webcursor.cc',
161 'common/cursors/webcursor.h',
162 'common/cursors/webcursor_android.cc',
163 'common/cursors/webcursor_aura.cc',
164 'common/cursors/webcursor_aurawin.cc',
165 'common/cursors/webcursor_aurax11.cc',
166 'common/cursors/webcursor_gtk.cc',
167 'common/cursors/webcursor_gtk_data.h',
168 'common/cursors/webcursor_mac.mm',
169 'common/cursors/webcursor_null.cc',
170 'common/cursors/webcursor_win.cc',
152 'common/database_messages.h', 171 'common/database_messages.h',
153 'common/date_time_suggestion.h', 172 'common/date_time_suggestion.h',
154 'common/desktop_notification_messages.h', 173 'common/desktop_notification_messages.h',
155 'common/device_orientation/device_motion_hardware_buffer.h', 174 'common/device_orientation/device_motion_hardware_buffer.h',
156 'common/device_orientation/device_motion_messages.h', 175 'common/device_orientation/device_motion_messages.h',
157 'common/device_orientation/device_orientation_hardware_buffer.h', 176 'common/device_orientation/device_orientation_hardware_buffer.h',
158 'common/device_orientation/device_orientation_messages.h', 177 'common/device_orientation/device_orientation_messages.h',
159 'common/devtools_messages.h', 178 'common/devtools_messages.h',
160 'common/dom_storage/dom_storage_map.cc', 179 'common/dom_storage/dom_storage_map.cc',
161 'common/dom_storage/dom_storage_map.h', 180 'common/dom_storage/dom_storage_map.h',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'common/indexed_db/indexed_db_constants.h', 282 'common/indexed_db/indexed_db_constants.h',
264 'common/indexed_db/indexed_db_key.cc', 283 'common/indexed_db/indexed_db_key.cc',
265 'common/indexed_db/indexed_db_key.h', 284 'common/indexed_db/indexed_db_key.h',
266 'common/indexed_db/indexed_db_key_path.cc', 285 'common/indexed_db/indexed_db_key_path.cc',
267 'common/indexed_db/indexed_db_key_path.h', 286 'common/indexed_db/indexed_db_key_path.h',
268 'common/indexed_db/indexed_db_key_range.cc', 287 'common/indexed_db/indexed_db_key_range.cc',
269 'common/indexed_db/indexed_db_key_range.h', 288 'common/indexed_db/indexed_db_key_range.h',
270 'common/indexed_db/indexed_db_messages.h', 289 'common/indexed_db/indexed_db_messages.h',
271 'common/indexed_db/indexed_db_param_traits.cc', 290 'common/indexed_db/indexed_db_param_traits.cc',
272 'common/indexed_db/indexed_db_param_traits.h', 291 'common/indexed_db/indexed_db_param_traits.h',
273 'common/input/input_event_stream_validator.cc',
274 'common/input/input_event_stream_validator.h',
275 'common/input/gesture_event_stream_validator.cc', 292 'common/input/gesture_event_stream_validator.cc',
276 'common/input/gesture_event_stream_validator.h', 293 'common/input/gesture_event_stream_validator.h',
277 'common/input/input_event.cc', 294 'common/input/input_event.cc',
278 'common/input/input_event.h', 295 'common/input/input_event.h',
296 'common/input/input_event_stream_validator.cc',
297 'common/input/input_event_stream_validator.h',
279 'common/input/input_param_traits.cc', 298 'common/input/input_param_traits.cc',
280 'common/input/input_param_traits.h', 299 'common/input/input_param_traits.h',
281 'common/input/scoped_web_input_event.cc', 300 'common/input/scoped_web_input_event.cc',
282 'common/input/scoped_web_input_event.h', 301 'common/input/scoped_web_input_event.h',
283 'common/input/synthetic_gesture_packet.cc', 302 'common/input/synthetic_gesture_packet.cc',
284 'common/input/synthetic_gesture_packet.h', 303 'common/input/synthetic_gesture_packet.h',
285 'common/input/synthetic_gesture_params.cc', 304 'common/input/synthetic_gesture_params.cc',
286 'common/input/synthetic_gesture_params.h', 305 'common/input/synthetic_gesture_params.h',
287 'common/input/synthetic_pinch_gesture_params.cc', 306 'common/input/synthetic_pinch_gesture_params.cc',
288 'common/input/synthetic_pinch_gesture_params.h', 307 'common/input/synthetic_pinch_gesture_params.h',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'common/set_process_title_linux.h', 414 'common/set_process_title_linux.h',
396 'common/socket_stream.h', 415 'common/socket_stream.h',
397 'common/socket_stream_handle_data.h', 416 'common/socket_stream_handle_data.h',
398 'common/socket_stream_messages.h', 417 'common/socket_stream_messages.h',
399 'common/speech_recognition_messages.h', 418 'common/speech_recognition_messages.h',
400 'common/ssl_status_serialization.cc', 419 'common/ssl_status_serialization.cc',
401 'common/ssl_status_serialization.h', 420 'common/ssl_status_serialization.h',
402 'common/swapped_out_messages.cc', 421 'common/swapped_out_messages.cc',
403 'common/swapped_out_messages.h', 422 'common/swapped_out_messages.h',
404 'common/text_input_client_messages.h', 423 'common/text_input_client_messages.h',
424 'common/url_schemes.cc',
425 'common/url_schemes.h',
405 'common/user_agent.cc', 426 'common/user_agent.cc',
406 'common/user_agent_ios.mm', 427 'common/user_agent_ios.mm',
407 'common/url_schemes.cc',
408 'common/url_schemes.h',
409 'common/utility_messages.h', 428 'common/utility_messages.h',
410 'common/view_message_enums.h', 429 'common/view_message_enums.h',
411 'common/view_messages.h', 430 'common/view_messages.h',
412 'common/webplugin_geometry.cc', 431 'common/webplugin_geometry.cc',
413 'common/webplugin_geometry.h', 432 'common/webplugin_geometry.h',
414 'common/websocket.cc', 433 'common/websocket.cc',
415 'common/websocket.h', 434 'common/websocket.h',
416 'common/websocket_messages.h', 435 'common/websocket_messages.h',
417 'common/worker_messages.h', 436 'common/worker_messages.h',
418 'common/zygote_commands_linux.h', 437 'common/zygote_commands_linux.h',
419 'port/common/input_event_ack_state.h', 438 'port/common/input_event_ack_state.h',
420 'public/common/browser_plugin_permission_type.h',
421 'public/common/common_param_traits.cc',
422 'public/common/common_param_traits.h',
423 'public/common/common_param_traits_macros.h',
424 'public/common/content_client.cc',
425 'public/common/content_client.h',
426 'public/common/window_container_type.cc',
427 'public/common/window_container_type.h',
428 ], 439 ],
429 'conditions': [ 440 'conditions': [
441 ['use_aura==1', {
442 'sources!': [
443 'common/cursors/webcursor_mac.mm',
444 'common/cursors/webcursor_win.cc',
445 ],
446 }],
447 ['use_ozone==0', {
448 'sources!': [
449 'common/cursors/webcursor_null.cc',
450 ],
451 }],
430 ['OS=="ios"', { 452 ['OS=="ios"', {
431 # iOS has different user-agent construction utilities, since the 453 # iOS has different user-agent construction utilities, since the
432 # version strings is not derived from webkit_version, and follows 454 # version strings is not derived from webkit_version, and follows
433 # a different format. 455 # a different format.
434 'sources!': [ 456 'sources!': [
435 'common/user_agent.cc', 457 'common/user_agent.cc',
436 ], 458 ],
437 'sources/': [ 459 'sources/': [
438 # iOS only needs a small portion of content; exclude all the 460 # iOS only needs a small portion of content; exclude all the
439 # implementation, and re-include what is used. 461 # implementation, and re-include what is used.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 '../third_party/WebKit/public/blink.gyp:blink', 495 '../third_party/WebKit/public/blink.gyp:blink',
474 '../ui/gl/gl.gyp:gl', 496 '../ui/gl/gl.gyp:gl',
475 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 497 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
476 '../webkit/common/webkit_common.gyp:webkit_common', 498 '../webkit/common/webkit_common.gyp:webkit_common',
477 '../webkit/storage_browser.gyp:webkit_storage_browser', 499 '../webkit/storage_browser.gyp:webkit_storage_browser',
478 '../webkit/storage_common.gyp:webkit_storage_common', 500 '../webkit/storage_common.gyp:webkit_storage_common',
479 'content.gyp:webkit_version', 501 'content.gyp:webkit_version',
480 ], 502 ],
481 }], 503 }],
482 ['OS=="mac"', { 504 ['OS=="mac"', {
505 'dependencies': [
506 '../webkit/webkit_resources.gyp:webkit_resources',
507 ],
483 'sources': [ 508 'sources': [
484 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc', 509 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc',
485 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h', 510 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h',
486 ], 511 ],
487 'sources!': [ 512 'sources!': [
488 'common/plugin_list_posix.cc', 513 'common/plugin_list_posix.cc',
489 ], 514 ],
490 'link_settings': { 515 'link_settings': {
491 'libraries': [ 516 'libraries': [
492 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 517 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 730 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
706 'common/sandbox_linux/bpf_renderer_policy_linux.h', 731 'common/sandbox_linux/bpf_renderer_policy_linux.h',
707 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 732 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
708 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 733 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
709 ], 734 ],
710 }, { 735 }, {
711 'defines': ['USE_SECCOMP_BPF'], 736 'defines': ['USE_SECCOMP_BPF'],
712 }], 737 }],
713 ], 738 ],
714 } 739 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698