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 '../components/components.gyp:autofill_content_renderer', | 16 '../components/components.gyp:autofill_content_renderer', |
17 '../components/components.gyp:startup_metric_utils', | 17 '../components/components.gyp:startup_metric_utils', |
| 18 '../components/components.gyp:translate_common', |
| 19 '../components/components.gyp:translate_language_detection', |
18 '../components/components.gyp:visitedlink_renderer', | 20 '../components/components.gyp:visitedlink_renderer', |
19 '../content/content.gyp:content_renderer', | 21 '../content/content.gyp:content_renderer', |
20 '../net/net.gyp:net', | 22 '../net/net.gyp:net', |
21 '../printing/printing.gyp:printing', | 23 '../printing/printing.gyp:printing', |
22 '../skia/skia.gyp:skia', | 24 '../skia/skia.gyp:skia', |
23 '../third_party/WebKit/public/blink.gyp:blink', | 25 '../third_party/WebKit/public/blink.gyp:blink', |
24 '../third_party/hunspell/hunspell.gyp:hunspell', | 26 '../third_party/hunspell/hunspell.gyp:hunspell', |
25 '../third_party/icu/icu.gyp:icui18n', | 27 '../third_party/icu/icu.gyp:icui18n', |
26 '../third_party/icu/icu.gyp:icuuc', | 28 '../third_party/icu/icu.gyp:icuuc', |
27 '../third_party/npapi/npapi.gyp:npapi', | 29 '../third_party/npapi/npapi.gyp:npapi', |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 'dependencies': [ | 399 'dependencies': [ |
398 '../build/linux/system.gyp:gtk', | 400 '../build/linux/system.gyp:gtk', |
399 '../sandbox/sandbox.gyp:sandbox', | 401 '../sandbox/sandbox.gyp:sandbox', |
400 ], | 402 ], |
401 }], | 403 }], |
402 ['enable_automation==0', { | 404 ['enable_automation==0', { |
403 'sources/': [ | 405 'sources/': [ |
404 ['exclude', '^renderer/automation/'] | 406 ['exclude', '^renderer/automation/'] |
405 ] | 407 ] |
406 }], | 408 }], |
407 » ['enable_printing==0', { | 409 ['enable_printing==0', { |
408 'sources/': [ | 410 'sources/': [ |
409 ['exclude', '^renderer/printing/'] | 411 ['exclude', '^renderer/printing/'] |
410 ] | 412 ] |
411 » }], | 413 }], |
412 ['OS=="android"', { | 414 ['OS=="android"', { |
413 'sources!': [ | 415 'sources!': [ |
414 'renderer/prerender/prerender_media_load_deferrer.cc', | 416 'renderer/prerender/prerender_media_load_deferrer.cc', |
415 'renderer/prerender/prerender_media_load_deferrer.h', | 417 'renderer/prerender/prerender_media_load_deferrer.h', |
416 'renderer/extensions/api_definitions_natives.cc', | 418 'renderer/extensions/api_definitions_natives.cc', |
417 'renderer/extensions/app_window_custom_bindings.cc', | 419 'renderer/extensions/app_window_custom_bindings.cc', |
418 'renderer/extensions/chrome_v8_extension.cc', | 420 'renderer/extensions/chrome_v8_extension.cc', |
419 'renderer/extensions/chrome_v8_extension_handler.cc', | 421 'renderer/extensions/chrome_v8_extension_handler.cc', |
420 'renderer/extensions/context_menus_custom_bindings.cc', | 422 'renderer/extensions/context_menus_custom_bindings.cc', |
421 'renderer/extensions/extension_custom_bindings.cc', | 423 'renderer/extensions/extension_custom_bindings.cc', |
(...skipping 27 matching lines...) Expand all Loading... |
449 'export_dependent_settings': [ | 451 'export_dependent_settings': [ |
450 '<(allocator_target)', | 452 '<(allocator_target)', |
451 ], | 453 ], |
452 }], | 454 }], |
453 ], | 455 ], |
454 }], | 456 }], |
455 ], | 457 ], |
456 }, | 458 }, |
457 ], | 459 ], |
458 } | 460 } |
OLD | NEW |