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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
398 'dependencies': [ | 400 'dependencies': [ |
399 '../build/linux/system.gyp:gtk', | 401 '../build/linux/system.gyp:gtk', |
400 '../sandbox/sandbox.gyp:sandbox', | 402 '../sandbox/sandbox.gyp:sandbox', |
401 ], | 403 ], |
402 }], | 404 }], |
403 ['enable_automation==0', { | 405 ['enable_automation==0', { |
404 'sources/': [ | 406 'sources/': [ |
405 ['exclude', '^renderer/automation/'] | 407 ['exclude', '^renderer/automation/'] |
406 ] | 408 ] |
407 }], | 409 }], |
408 » ['enable_printing==0', { | 410 ['enable_printing==0', { |
blundell
2013/10/02 10:01:17
Do you know what this diff is?
droger
2013/10/02 10:59:41
There was a tab character.
| |
409 'sources/': [ | 411 'sources/': [ |
410 ['exclude', '^renderer/printing/'] | 412 ['exclude', '^renderer/printing/'] |
411 ] | 413 ] |
412 » }], | 414 }], |
413 ['OS=="android"', { | 415 ['OS=="android"', { |
414 'sources!': [ | 416 'sources!': [ |
415 'renderer/prerender/prerender_media_load_deferrer.cc', | 417 'renderer/prerender/prerender_media_load_deferrer.cc', |
416 'renderer/prerender/prerender_media_load_deferrer.h', | 418 'renderer/prerender/prerender_media_load_deferrer.h', |
417 'renderer/extensions/api_definitions_natives.cc', | 419 'renderer/extensions/api_definitions_natives.cc', |
418 'renderer/extensions/app_window_custom_bindings.cc', | 420 'renderer/extensions/app_window_custom_bindings.cc', |
419 'renderer/extensions/chrome_v8_extension.cc', | 421 'renderer/extensions/chrome_v8_extension.cc', |
420 'renderer/extensions/chrome_v8_extension_handler.cc', | 422 'renderer/extensions/chrome_v8_extension_handler.cc', |
421 'renderer/extensions/context_menus_custom_bindings.cc', | 423 'renderer/extensions/context_menus_custom_bindings.cc', |
422 'renderer/extensions/extension_custom_bindings.cc', | 424 'renderer/extensions/extension_custom_bindings.cc', |
(...skipping 27 matching lines...) Expand all Loading... | |
450 'export_dependent_settings': [ | 452 'export_dependent_settings': [ |
451 '<(allocator_target)', | 453 '<(allocator_target)', |
452 ], | 454 ], |
453 }], | 455 }], |
454 ], | 456 ], |
455 }], | 457 }], |
456 ], | 458 ], |
457 }, | 459 }, |
458 ], | 460 ], |
459 } | 461 } |
OLD | NEW |