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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 'renderer/visitedlink_slave.h', | 277 'renderer/visitedlink_slave.h', |
282 'renderer/webview_color_overlay.cc', | 278 'renderer/webview_color_overlay.cc', |
283 'renderer/webview_color_overlay.h', | 279 'renderer/webview_color_overlay.h', |
284 ], | 280 ], |
285 'conditions': [ | 281 'conditions': [ |
286 ['disable_nacl!=1', { | 282 ['disable_nacl!=1', { |
287 'dependencies': [ | 283 'dependencies': [ |
288 'nacl', | 284 'nacl', |
289 ], | 285 ], |
290 }], | 286 }], |
| 287 ['enable_ppapi==1', { |
| 288 'dependencies': [ |
| 289 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 290 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 291 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 292 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 293 ], |
| 294 }, { # enable_ppapi==0 |
| 295 'sources/': [ |
| 296 ['exclude', '^renderer/pepper/'], |
| 297 ], |
| 298 }], |
291 ['safe_browsing==1', { | 299 ['safe_browsing==1', { |
292 'defines': [ | 300 'defines': [ |
293 'FULL_SAFE_BROWSING', | 301 'FULL_SAFE_BROWSING', |
294 ], | 302 ], |
295 'dependencies': [ | 303 'dependencies': [ |
296 'safe_browsing_proto', | 304 'safe_browsing_proto', |
297 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 305 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
298 ], | 306 ], |
299 }, { # safe_browsing==0 || safe_browsing==2 | 307 }, { # safe_browsing==0 || safe_browsing==2 |
300 'sources/': [ | 308 'sources/': [ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 'export_dependent_settings': [ | 350 'export_dependent_settings': [ |
343 '<(allocator_target)', | 351 '<(allocator_target)', |
344 ], | 352 ], |
345 }], | 353 }], |
346 ], | 354 ], |
347 }], | 355 }], |
348 ], | 356 ], |
349 }, | 357 }, |
350 ], | 358 ], |
351 } | 359 } |
OLD | NEW |