Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: chrome/chrome.gyp

Issue 6672048: Move plugin code to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 ], 537 ],
538 'conditions': [ 538 'conditions': [
539 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 539 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
540 'dependencies': [ 540 'dependencies': [
541 '../build/linux/system.gyp:gtk', 541 '../build/linux/system.gyp:gtk',
542 ], 542 ],
543 }], 543 }],
544 ], 544 ],
545 }, 545 },
546 { 546 {
547 'target_name': 'plugin',
548 'type': '<(library)',
549 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A',
550 'dependencies': [
551 'common',
552 'chrome_resources',
553 'chrome_strings',
554 '../media/media.gyp:media',
555 '../skia/skia.gyp:skia',
556 '../third_party/icu/icu.gyp:icui18n',
557 '../third_party/icu/icu.gyp:icuuc',
558 '../third_party/npapi/npapi.gyp:npapi',
559 '../third_party/hunspell/hunspell.gyp:hunspell',
560 '../webkit/support/webkit_support.gyp:glue',
561 ],
562 'include_dirs': [
563 '<(INTERMEDIATE_DIR)',
564 ],
565 'sources': [
566 # All .cc, .h, .m, and .mm files under plugins except for tests and
567 # mocks.
568 'plugin/npobject_base.h',
569 'plugin/npobject_proxy.cc',
570 'plugin/npobject_proxy.h',
571 'plugin/npobject_stub.cc',
572 'plugin/npobject_stub.h',
573 'plugin/npobject_util.cc',
574 'plugin/npobject_util.h',
575 'plugin/plugin_channel.cc',
576 'plugin/plugin_channel.h',
577 'plugin/plugin_channel_base.cc',
578 'plugin/plugin_channel_base.h',
579 'plugin/plugin_interpose_util_mac.mm',
580 'plugin/plugin_interpose_util_mac.h',
581 'plugin/plugin_main.cc',
582 'plugin/plugin_main_linux.cc',
583 'plugin/plugin_main_mac.mm',
584 'plugin/plugin_thread.cc',
585 'plugin/plugin_thread.h',
586 'plugin/webplugin_accelerated_surface_proxy_mac.cc',
587 'plugin/webplugin_accelerated_surface_proxy_mac.h',
588 'plugin/webplugin_delegate_stub.cc',
589 'plugin/webplugin_delegate_stub.h',
590 'plugin/webplugin_proxy.cc',
591 'plugin/webplugin_proxy.h',
592 ],
593 # These are layered in conditionals in the event other platforms
594 # end up using this module as well.
595 'conditions': [
596 ['OS=="win"', {
597 'include_dirs': [
598 '<(DEPTH)/third_party/wtl/include',
599 ],
600 }],
601 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
602 'dependencies': [
603 '../build/linux/system.gyp:gtk',
604 ],
605 }],
606 ],
607 },
608 {
609 'target_name': 'utility', 547 'target_name': 'utility',
610 'type': '<(library)', 548 'type': '<(library)',
611 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', 549 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7',
612 'dependencies': [ 550 'dependencies': [
613 '../base/base.gyp:base', 551 '../base/base.gyp:base',
614 '../skia/skia.gyp:skia', 552 '../skia/skia.gyp:skia',
615 ], 553 ],
616 'sources': [ 554 'sources': [
617 'utility/utility_main.cc', 555 'utility/utility_main.cc',
618 'utility/utility_thread.cc', 556 'utility/utility_thread.cc',
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 }], # targets 1689 }], # targets
1752 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1690 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1753 ], # 'conditions' 1691 ], # 'conditions'
1754 } 1692 }
1755 1693
1756 # Local Variables: 1694 # Local Variables:
1757 # tab-width:2 1695 # tab-width:2
1758 # indent-tabs-mode:nil 1696 # indent-tabs-mode:nil
1759 # End: 1697 # End:
1760 # vim: set expandtab tabstop=2 shiftwidth=2: 1698 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698