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

Side by Side Diff: content/content_renderer.gypi

Issue 20707002: Implement Device Orientation using shared memory in content/renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed owners Created 7 years, 4 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 (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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../media/media.gyp:media', 8 '../media/media.gyp:media',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'renderer/android/phone_number_detector.cc', 81 'renderer/android/phone_number_detector.cc',
82 'renderer/android/phone_number_detector.h', 82 'renderer/android/phone_number_detector.h',
83 'renderer/android/synchronous_compositor_factory.cc', 83 'renderer/android/synchronous_compositor_factory.cc',
84 'renderer/android/synchronous_compositor_factory.h', 84 'renderer/android/synchronous_compositor_factory.h',
85 'renderer/cursor_utils.cc', 85 'renderer/cursor_utils.cc',
86 'renderer/cursor_utils.h', 86 'renderer/cursor_utils.h',
87 'renderer/device_orientation_dispatcher.cc', 87 'renderer/device_orientation_dispatcher.cc',
88 'renderer/device_orientation_dispatcher.h', 88 'renderer/device_orientation_dispatcher.h',
89 'renderer/device_orientation/device_motion_event_pump.cc', 89 'renderer/device_orientation/device_motion_event_pump.cc',
90 'renderer/device_orientation/device_motion_event_pump.h', 90 'renderer/device_orientation/device_motion_event_pump.h',
91 'renderer/device_orientation/device_orientation_event_pump.cc',
92 'renderer/device_orientation/device_orientation_event_pump.h',
93 'renderer/device_orientation/device_sensor_event_pump.cc',
94 'renderer/device_orientation/device_sensor_event_pump.h',
91 'renderer/devtools/devtools_agent.cc', 95 'renderer/devtools/devtools_agent.cc',
92 'renderer/devtools/devtools_agent.h', 96 'renderer/devtools/devtools_agent.h',
93 'renderer/devtools/devtools_agent_filter.cc', 97 'renderer/devtools/devtools_agent_filter.cc',
94 'renderer/devtools/devtools_agent_filter.h', 98 'renderer/devtools/devtools_agent_filter.h',
95 'renderer/devtools/devtools_client.cc', 99 'renderer/devtools/devtools_client.cc',
96 'renderer/devtools/devtools_client.h', 100 'renderer/devtools/devtools_client.h',
97 'renderer/disambiguation_popup_helper.cc', 101 'renderer/disambiguation_popup_helper.cc',
98 'renderer/disambiguation_popup_helper.h', 102 'renderer/disambiguation_popup_helper.h',
99 'renderer/dom_automation_controller.cc', 103 'renderer/dom_automation_controller.cc',
100 'renderer/dom_automation_controller.h', 104 'renderer/dom_automation_controller.h',
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 }], 706 }],
703 ], 707 ],
704 'target_conditions': [ 708 'target_conditions': [
705 ['OS=="android"', { 709 ['OS=="android"', {
706 'sources/': [ 710 'sources/': [
707 ['include', '^renderer/render_view_linux\\.cc$'], 711 ['include', '^renderer/render_view_linux\\.cc$'],
708 ], 712 ],
709 }], 713 }],
710 ], 714 ],
711 } 715 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698