OLD | NEW |
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 '../net/net.gyp:net', | 8 '../net/net.gyp:net', |
9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
10 '../third_party/hyphen/hyphen.gyp:hyphen', | 10 '../third_party/hyphen/hyphen.gyp:hyphen', |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'renderer/gamepad_shared_memory_reader.cc', | 89 'renderer/gamepad_shared_memory_reader.cc', |
90 'renderer/gamepad_shared_memory_reader.h', | 90 'renderer/gamepad_shared_memory_reader.h', |
91 'renderer/geolocation_dispatcher.cc', | 91 'renderer/geolocation_dispatcher.cc', |
92 'renderer/geolocation_dispatcher.h', | 92 'renderer/geolocation_dispatcher.h', |
93 'renderer/gpu/compositor_output_surface.cc', | 93 'renderer/gpu/compositor_output_surface.cc', |
94 'renderer/gpu/compositor_output_surface.h', | 94 'renderer/gpu/compositor_output_surface.h', |
95 'renderer/gpu/compositor_software_output_device.cc', | 95 'renderer/gpu/compositor_software_output_device.cc', |
96 'renderer/gpu/compositor_software_output_device.h', | 96 'renderer/gpu/compositor_software_output_device.h', |
97 'renderer/gpu/input_event_filter.cc', | 97 'renderer/gpu/input_event_filter.cc', |
98 'renderer/gpu/input_event_filter.h', | 98 'renderer/gpu/input_event_filter.h', |
| 99 'renderer/gpu/input_handler_client_impl.cc', |
| 100 'renderer/gpu/input_handler_client_impl.h', |
99 'renderer/gpu/input_handler_manager.cc', | 101 'renderer/gpu/input_handler_manager.cc', |
100 'renderer/gpu/input_handler_manager.h', | 102 'renderer/gpu/input_handler_manager.h', |
| 103 'renderer/gpu/input_handler_wrapper.cc', |
| 104 'renderer/gpu/input_handler_wrapper.h', |
101 'renderer/gpu/gpu_benchmarking_extension.cc', | 105 'renderer/gpu/gpu_benchmarking_extension.cc', |
102 'renderer/gpu/gpu_benchmarking_extension.h', | 106 'renderer/gpu/gpu_benchmarking_extension.h', |
103 'renderer/gpu/mailbox_output_surface.cc', | 107 'renderer/gpu/mailbox_output_surface.cc', |
104 'renderer/gpu/mailbox_output_surface.h', | 108 'renderer/gpu/mailbox_output_surface.h', |
105 'renderer/gpu/stream_texture_host_android.cc', | 109 'renderer/gpu/stream_texture_host_android.cc', |
106 'renderer/gpu/stream_texture_host_android.h', | 110 'renderer/gpu/stream_texture_host_android.h', |
107 'renderer/gpu/render_widget_compositor.cc', | 111 'renderer/gpu/render_widget_compositor.cc', |
108 'renderer/gpu/render_widget_compositor.h', | 112 'renderer/gpu/render_widget_compositor.h', |
109 'renderer/hyphenator/hyphenator.cc', | 113 'renderer/hyphenator/hyphenator.cc', |
110 'renderer/hyphenator/hyphenator.h', | 114 'renderer/hyphenator/hyphenator.h', |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 }], | 441 }], |
438 ], | 442 ], |
439 'target_conditions': [ | 443 'target_conditions': [ |
440 ['OS=="android"', { | 444 ['OS=="android"', { |
441 'sources/': [ | 445 'sources/': [ |
442 ['include', '^renderer/render_view_linux\\.cc$'], | 446 ['include', '^renderer/render_view_linux\\.cc$'], |
443 ], | 447 ], |
444 }], | 448 }], |
445 ], | 449 ], |
446 } | 450 } |
OLD | NEW |