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 '../ppapi/ppapi.gyp:ppapi_proxy', | 13 '../ppapi/ppapi.gyp:ppapi_proxy', |
14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
15 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 15 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
16 '../third_party/icu/icu.gyp:icuuc', | 16 '../third_party/icu/icu.gyp:icuuc', |
17 '../third_party/libjingle/libjingle.gyp:libjingle', | 17 '../third_party/libjingle/libjingle.gyp:libjingle', |
18 '../third_party/npapi/npapi.gyp:npapi', | 18 '../third_party/npapi/npapi.gyp:npapi', |
19 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 19 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
20 '../ui/gfx/surface/surface.gyp:surface', | |
Ben Goodger (Google)
2011/03/23 18:41:10
Hrm. I don't think content depended on app before.
jonathan.backer
2011/03/24 13:02:07
render_widget.cc (part of content_renderer) needs
| |
20 ], | 21 ], |
21 'include_dirs': [ | 22 'include_dirs': [ |
22 '..', | 23 '..', |
23 ], | 24 ], |
24 'sources': [ | 25 'sources': [ |
25 'renderer/active_notification_tracker.cc', | 26 'renderer/active_notification_tracker.cc', |
26 'renderer/active_notification_tracker.h', | 27 'renderer/active_notification_tracker.h', |
27 'renderer/audio_device.cc', | 28 'renderer/audio_device.cc', |
28 'renderer/audio_device.h', | 29 'renderer/audio_device.h', |
29 'renderer/audio_message_filter.cc', | 30 'renderer/audio_message_filter.cc', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
153 'link_settings': { | 154 'link_settings': { |
154 'mac_bundle_resources': [ | 155 'mac_bundle_resources': [ |
155 'renderer/renderer.sb', | 156 'renderer/renderer.sb', |
156 ], | 157 ], |
157 }, | 158 }, |
158 }], | 159 }], |
159 ], | 160 ], |
160 }, | 161 }, |
161 ], | 162 ], |
162 } | 163 } |
OLD | NEW |