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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'renderer', | 8 'target_name': 'renderer', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
11 'dependencies': [ | 11 'dependencies': [ |
12 'common', | 12 'common', |
13 'common_net', | 13 'common_net', |
14 'chrome_resources.gyp:chrome_resources', | 14 'chrome_resources.gyp:chrome_resources', |
15 'chrome_resources.gyp:chrome_strings', | 15 'chrome_resources.gyp:chrome_strings', |
16 'safe_browsing_proto', | 16 'safe_browsing_proto', |
17 '../content/content.gyp:content_renderer', | 17 '../content/content.gyp:content_renderer', |
18 '../net/net.gyp:net', | 18 '../net/net.gyp:net', |
| 19 '../ppapi/ppapi_internal.gyp:ppapi_host', |
19 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 20 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
20 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 21 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
21 '../printing/printing.gyp:printing', | 22 '../printing/printing.gyp:printing', |
22 '../skia/skia.gyp:skia', | 23 '../skia/skia.gyp:skia', |
23 '../third_party/cld/cld.gyp:cld', | 24 '../third_party/cld/cld.gyp:cld', |
24 '../third_party/hunspell/hunspell.gyp:hunspell', | 25 '../third_party/hunspell/hunspell.gyp:hunspell', |
25 '../third_party/icu/icu.gyp:icui18n', | 26 '../third_party/icu/icu.gyp:icui18n', |
26 '../third_party/icu/icu.gyp:icuuc', | 27 '../third_party/icu/icu.gyp:icuuc', |
27 '../third_party/npapi/npapi.gyp:npapi', | 28 '../third_party/npapi/npapi.gyp:npapi', |
28 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 29 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 'renderer/external_extension.h', | 194 'renderer/external_extension.h', |
194 'renderer/localized_error.cc', | 195 'renderer/localized_error.cc', |
195 'renderer/localized_error.h', | 196 'renderer/localized_error.h', |
196 'renderer/page_click_listener.h', | 197 'renderer/page_click_listener.h', |
197 'renderer/page_click_tracker.cc', | 198 'renderer/page_click_tracker.cc', |
198 'renderer/page_click_tracker.h', | 199 'renderer/page_click_tracker.h', |
199 'renderer/page_load_histograms.cc', | 200 'renderer/page_load_histograms.cc', |
200 'renderer/page_load_histograms.h', | 201 'renderer/page_load_histograms.h', |
201 'renderer/pepper/chrome_ppapi_interfaces.cc', | 202 'renderer/pepper/chrome_ppapi_interfaces.cc', |
202 'renderer/pepper/chrome_ppapi_interfaces.h', | 203 'renderer/pepper/chrome_ppapi_interfaces.h', |
| 204 'renderer/pepper/chrome_renderer_pepper_host_factory.cc', |
| 205 'renderer/pepper/chrome_renderer_pepper_host_factory.h', |
| 206 'renderer/pepper/pepper_flash_renderer_message_filter.cc', |
| 207 'renderer/pepper/pepper_flash_renderer_message_filter.h', |
| 208 'renderer/pepper/pepper_helper.cc', |
| 209 'renderer/pepper/pepper_helper.h', |
203 'renderer/pepper/ppb_flash_print_impl.cc', | 210 'renderer/pepper/ppb_flash_print_impl.cc', |
204 'renderer/pepper/ppb_flash_print_impl.h', | 211 'renderer/pepper/ppb_flash_print_impl.h', |
205 'renderer/pepper/ppb_nacl_private_impl.cc', | 212 'renderer/pepper/ppb_nacl_private_impl.cc', |
206 'renderer/pepper/ppb_nacl_private_impl.h', | 213 'renderer/pepper/ppb_nacl_private_impl.h', |
207 'renderer/pepper/ppb_pdf_impl.cc', | 214 'renderer/pepper/ppb_pdf_impl.cc', |
208 'renderer/pepper/ppb_pdf_impl.h', | 215 'renderer/pepper/ppb_pdf_impl.h', |
209 'renderer/plugins/plugin_placeholder.cc', | 216 'renderer/plugins/plugin_placeholder.cc', |
210 'renderer/plugins/plugin_placeholder.h', | 217 'renderer/plugins/plugin_placeholder.h', |
211 'renderer/plugins/plugin_uma.cc', | 218 'renderer/plugins/plugin_uma.cc', |
212 'renderer/plugins/plugin_uma.h', | 219 'renderer/plugins/plugin_uma.h', |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 'sources!': [ | 324 'sources!': [ |
318 'renderer/extensions/experimental.usb_custom_bindings.cc', | 325 'renderer/extensions/experimental.usb_custom_bindings.cc', |
319 'renderer/extensions/experimental.usb_custom_bindings.h', | 326 'renderer/extensions/experimental.usb_custom_bindings.h', |
320 'renderer/resources/extensions/experimental.usb_custom_bindings.js', | 327 'renderer/resources/extensions/experimental.usb_custom_bindings.js', |
321 ], | 328 ], |
322 }], | 329 }], |
323 ], | 330 ], |
324 }, | 331 }, |
325 ], | 332 ], |
326 } | 333 } |
OLD | NEW |