OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 'common/extensions/api/extension_action/page_action_handler.cc', | 579 'common/extensions/api/extension_action/page_action_handler.cc', |
580 'common/extensions/api/spellcheck/spellcheck_handler.cc', | 580 'common/extensions/api/spellcheck/spellcheck_handler.cc', |
581 'common/extensions/manifest_handlers/minimum_chrome_version_checker.
cc', | 581 'common/extensions/manifest_handlers/minimum_chrome_version_checker.
cc', |
582 'common/extensions/manifest_handlers/nacl_modules_handler.cc', | 582 'common/extensions/manifest_handlers/nacl_modules_handler.cc', |
583 'common/icon_with_badge_image_source.cc', | 583 'common/icon_with_badge_image_source.cc', |
584 'common/importer/imported_bookmark_entry.cc', | 584 'common/importer/imported_bookmark_entry.cc', |
585 'common/importer/importer_bridge.cc', | 585 'common/importer/importer_bridge.cc', |
586 'common/importer/importer_data_types.cc', | 586 'common/importer/importer_data_types.cc', |
587 'common/importer/importer_url_row.cc', | 587 'common/importer/importer_url_row.cc', |
588 'common/net/url_util.cc', | 588 'common/net/url_util.cc', |
589 'common/pepper_permission_util.cc', | |
590 'common/spellcheck_common.cc', | 589 'common/spellcheck_common.cc', |
591 ], | 590 ], |
592 'dependencies!': [ | 591 'dependencies!': [ |
593 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 592 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
594 ], | 593 ], |
595 }], | 594 }], |
596 ['OS=="win"', { | 595 ['OS=="win"', { |
597 'include_dirs': [ | 596 'include_dirs': [ |
598 '<(DEPTH)/breakpad/src', | 597 '<(DEPTH)/breakpad/src', |
599 '<(DEPTH)/third_party/wtl/include', | 598 '<(DEPTH)/third_party/wtl/include', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 ['remoting==1', { | 642 ['remoting==1', { |
644 'dependencies': [ | 643 'dependencies': [ |
645 '../remoting/remoting.gyp:remoting_client_plugin', | 644 '../remoting/remoting.gyp:remoting_client_plugin', |
646 ], | 645 ], |
647 }], | 646 }], |
648 ['enable_automation==0', { | 647 ['enable_automation==0', { |
649 'sources/': [ | 648 'sources/': [ |
650 ['exclude', '^common/automation_'] | 649 ['exclude', '^common/automation_'] |
651 ] | 650 ] |
652 }], | 651 }], |
| 652 ['enable_plugins==0', { |
| 653 'source!' : [ |
| 654 'common/pepper_permission_util.cc', |
| 655 ], |
| 656 }], |
653 ['use_system_nspr==1', { | 657 ['use_system_nspr==1', { |
654 'dependencies': [ | 658 'dependencies': [ |
655 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', | 659 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', |
656 ], | 660 ], |
657 }], | 661 }], |
658 ['enable_webrtc==0', { | 662 ['enable_webrtc==0', { |
659 'sources!': [ | 663 'sources!': [ |
660 'common/media/webrtc_logging_messages.h', | 664 'common/media/webrtc_logging_messages.h', |
661 ] | 665 ] |
662 }], | 666 }], |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 'common/metrics/proto/user_action_event.proto', | 864 'common/metrics/proto/user_action_event.proto', |
861 ], | 865 ], |
862 'variables': { | 866 'variables': { |
863 'proto_in_dir': 'common/metrics/proto', | 867 'proto_in_dir': 'common/metrics/proto', |
864 'proto_out_dir': 'chrome/common/metrics/proto', | 868 'proto_out_dir': 'chrome/common/metrics/proto', |
865 }, | 869 }, |
866 'includes': [ '../build/protoc.gypi' ], | 870 'includes': [ '../build/protoc.gypi' ], |
867 }, | 871 }, |
868 ], | 872 ], |
869 } | 873 } |
OLD | NEW |