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 '../content/content.gyp:content_renderer', | 16 '../content/content.gyp:content_renderer', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 '../ppapi/ppapi_internal.gyp:ppapi_host', | |
19 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | |
20 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | |
21 '../ppapi/ppapi_internal.gyp:ppapi_shared', | |
22 '../printing/printing.gyp:printing', | 18 '../printing/printing.gyp:printing', |
23 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
24 '../third_party/hunspell/hunspell.gyp:hunspell', | 20 '../third_party/hunspell/hunspell.gyp:hunspell', |
25 '../third_party/icu/icu.gyp:icui18n', | 21 '../third_party/icu/icu.gyp:icui18n', |
26 '../third_party/icu/icu.gyp:icuuc', | 22 '../third_party/icu/icu.gyp:icuuc', |
27 '../third_party/npapi/npapi.gyp:npapi', | 23 '../third_party/npapi/npapi.gyp:npapi', |
28 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 24 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
29 '../ui/surface/surface.gyp:surface', | 25 '../ui/surface/surface.gyp:surface', |
30 '../webkit/support/webkit_support.gyp:glue', | 26 '../webkit/support/webkit_support.gyp:glue', |
31 '../webkit/support/webkit_support.gyp:webkit_gpu', | 27 '../webkit/support/webkit_support.gyp:webkit_gpu', |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 'renderer/visitedlink_slave.h', | 279 'renderer/visitedlink_slave.h', |
284 'renderer/webview_color_overlay.cc', | 280 'renderer/webview_color_overlay.cc', |
285 'renderer/webview_color_overlay.h', | 281 'renderer/webview_color_overlay.h', |
286 ], | 282 ], |
287 'conditions': [ | 283 'conditions': [ |
288 ['disable_nacl!=1', { | 284 ['disable_nacl!=1', { |
289 'dependencies': [ | 285 'dependencies': [ |
290 'nacl', | 286 'nacl', |
291 ], | 287 ], |
292 }], | 288 }], |
| 289 ['enable_plugins==1', { |
| 290 'dependencies': [ |
| 291 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 292 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 293 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 294 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 295 ], |
| 296 }, { # enable_plugins==0 |
| 297 'sources/': [ |
| 298 ['exclude', '^renderer/pepper/'], |
| 299 ], |
| 300 }], |
293 ['safe_browsing==1', { | 301 ['safe_browsing==1', { |
294 'defines': [ | 302 'defines': [ |
295 'FULL_SAFE_BROWSING', | 303 'FULL_SAFE_BROWSING', |
296 ], | 304 ], |
297 'dependencies': [ | 305 'dependencies': [ |
298 'safe_browsing_proto', | 306 'safe_browsing_proto', |
299 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 307 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
300 ], | 308 ], |
301 }, { # safe_browsing==0 || safe_browsing==2 | 309 }, { # safe_browsing==0 || safe_browsing==2 |
302 'sources/': [ | 310 'sources/': [ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 'export_dependent_settings': [ | 352 'export_dependent_settings': [ |
345 '<(allocator_target)', | 353 '<(allocator_target)', |
346 ], | 354 ], |
347 }], | 355 }], |
348 ], | 356 ], |
349 }], | 357 }], |
350 ], | 358 ], |
351 }, | 359 }, |
352 ], | 360 ], |
353 } | 361 } |
OLD | NEW |