| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'content_renderer', | 8 'target_name': 'content_renderer', |
| 9 'msvs_guid': '9AAA8CF2-9B3D-4895-8CB9-D70BBD125EAD', | 9 'msvs_guid': '9AAA8CF2-9B3D-4895-8CB9-D70BBD125EAD', |
| 10 'type': '<(library)', | 10 'type': '<(library)', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'content_common', | 12 'content_common', |
| 13 '../skia/skia.gyp:skia', | 13 '../skia/skia.gyp:skia', |
| 14 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 14 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 15 '../third_party/libjingle/libjingle.gyp:libjingle', | 15 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 16 '../third_party/npapi/npapi.gyp:npapi', | 16 '../third_party/npapi/npapi.gyp:npapi', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '..', | 19 '..', |
| 20 ], | 20 ], |
| 21 'sources': [ | 21 'sources': [ |
| 22 'renderer/active_notification_tracker.cc', | 22 'renderer/active_notification_tracker.cc', |
| 23 'renderer/active_notification_tracker.h', | 23 'renderer/active_notification_tracker.h', |
| 24 'renderer/audio_device.cc', | 24 'renderer/audio_device.cc', |
| 25 'renderer/audio_device.h', | 25 'renderer/audio_device.h', |
| 26 'renderer/audio_message_filter.cc', | 26 'renderer/audio_message_filter.cc', |
| 27 'renderer/audio_message_filter.h', | 27 'renderer/audio_message_filter.h', |
| 28 'renderer/content_renderer_client.h', |
| 28 'renderer/cookie_message_filter.cc', | 29 'renderer/cookie_message_filter.cc', |
| 29 'renderer/cookie_message_filter.h', | 30 'renderer/cookie_message_filter.h', |
| 30 'renderer/device_orientation_dispatcher.cc', | 31 'renderer/device_orientation_dispatcher.cc', |
| 31 'renderer/device_orientation_dispatcher.h', | 32 'renderer/device_orientation_dispatcher.h', |
| 32 'renderer/geolocation_dispatcher.cc', | 33 'renderer/geolocation_dispatcher.cc', |
| 33 'renderer/geolocation_dispatcher.h', | 34 'renderer/geolocation_dispatcher.h', |
| 34 'renderer/ggl.cc', | 35 'renderer/ggl.cc', |
| 35 'renderer/ggl.h', | 36 'renderer/ggl.h', |
| 36 'renderer/gpu_channel_host.cc', | 37 'renderer/gpu_channel_host.cc', |
| 37 'renderer/gpu_channel_host.h', | 38 'renderer/gpu_channel_host.h', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 }], | 87 }], |
| 87 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 88 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 88 'dependencies': [ | 89 'dependencies': [ |
| 89 '../build/linux/system.gyp:gtk', | 90 '../build/linux/system.gyp:gtk', |
| 90 ], | 91 ], |
| 91 }], | 92 }], |
| 92 ], | 93 ], |
| 93 }, | 94 }, |
| 94 ], | 95 ], |
| 95 } | 96 } |
| OLD | NEW |