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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 ['OS!="ios" and chrome_multiple_dll!=1', { | 577 ['OS!="ios" and chrome_multiple_dll!=1', { |
578 'dependencies': [ | 578 'dependencies': [ |
579 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 579 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
580 ], | 580 ], |
581 }], | 581 }], |
582 ['OS=="android"', { | 582 ['OS=="android"', { |
583 'sources/': [ | 583 'sources/': [ |
584 ['exclude', '^common/chrome_version_info_posix.cc'], | 584 ['exclude', '^common/chrome_version_info_posix.cc'], |
585 ['exclude', '^common/service_'], | 585 ['exclude', '^common/service_'], |
586 ], | 586 ], |
| 587 'sources!': [ |
| 588 'common/badge_util.cc', |
| 589 'common/extensions/api/extension_action/browser_action_handler.cc', |
| 590 'common/extensions/api/extension_action/page_action_handler.cc', |
| 591 'common/extensions/api/spellcheck/spellcheck_handler.cc', |
| 592 'common/extensions/manifest_handlers/minimum_chrome_version_checker.
cc', |
| 593 'common/extensions/manifest_handlers/nacl_modules_handler.cc', |
| 594 'common/icon_with_badge_image_source.cc', |
| 595 'common/importer/imported_bookmark_entry.cc', |
| 596 'common/importer/importer_bridge.cc', |
| 597 'common/importer/importer_data_types.cc', |
| 598 'common/importer/importer_url_row.cc', |
| 599 'common/net/url_util.cc', |
| 600 'common/pepper_permission_util.cc', |
| 601 'common/spellcheck_common.cc', |
| 602 ], |
587 'dependencies!': [ | 603 'dependencies!': [ |
588 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 604 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
589 ], | 605 ], |
590 }], | 606 }], |
591 ['OS=="win"', { | 607 ['OS=="win"', { |
592 'include_dirs': [ | 608 'include_dirs': [ |
593 '<(DEPTH)/breakpad/src', | 609 '<(DEPTH)/breakpad/src', |
594 '<(DEPTH)/third_party/wtl/include', | 610 '<(DEPTH)/third_party/wtl/include', |
595 ], | 611 ], |
596 }], | 612 }], |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 'common/metrics/proto/user_action_event.proto', | 861 'common/metrics/proto/user_action_event.proto', |
846 ], | 862 ], |
847 'variables': { | 863 'variables': { |
848 'proto_in_dir': 'common/metrics/proto', | 864 'proto_in_dir': 'common/metrics/proto', |
849 'proto_out_dir': 'chrome/common/metrics/proto', | 865 'proto_out_dir': 'chrome/common/metrics/proto', |
850 }, | 866 }, |
851 'includes': [ '../build/protoc.gypi' ], | 867 'includes': [ '../build/protoc.gypi' ], |
852 }, | 868 }, |
853 ], | 869 ], |
854 } | 870 } |
OLD | NEW |