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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 'dependencies': [ | 525 'dependencies': [ |
526 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 526 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
527 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', | 527 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', |
528 '<(DEPTH)/components/components.gyp:autofill_core_common', | 528 '<(DEPTH)/components/components.gyp:autofill_core_common', |
529 '<(DEPTH)/components/nacl_common.gyp:nacl_common', | 529 '<(DEPTH)/components/nacl_common.gyp:nacl_common', |
530 '<(DEPTH)/ipc/ipc.gyp:ipc', | 530 '<(DEPTH)/ipc/ipc.gyp:ipc', |
531 '<(DEPTH)/printing/printing.gyp:printing', | 531 '<(DEPTH)/printing/printing.gyp:printing', |
532 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h
', | 532 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h
', |
533 '<(DEPTH)/third_party/re2/re2.gyp:re2', | 533 '<(DEPTH)/third_party/re2/re2.gyp:re2', |
534 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver
sion_h', | 534 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver
sion_h', |
535 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | |
536 ], | 535 ], |
537 }, { # OS == ios | 536 }, { # OS == ios |
538 'sources/': [ | 537 'sources/': [ |
539 ['exclude', '^common/child_process_'], | 538 ['exclude', '^common/child_process_'], |
540 ['exclude', '^common/chrome_content_client\\.cc$'], | 539 ['exclude', '^common/chrome_content_client\\.cc$'], |
541 ['exclude', '^common/chrome_version_info_posix\\.cc$'], | 540 ['exclude', '^common/chrome_version_info_posix\\.cc$'], |
542 ['exclude', '^common/common_message_generator\\.cc$'], | 541 ['exclude', '^common/common_message_generator\\.cc$'], |
543 ['exclude', '^common/common_param_traits'], | 542 ['exclude', '^common/common_param_traits'], |
544 ['exclude', '^common/custom_handlers/'], | 543 ['exclude', '^common/custom_handlers/'], |
545 ['exclude', '^common/extensions/'], | 544 ['exclude', '^common/extensions/'], |
(...skipping 14 matching lines...) Expand all Loading... |
560 ['include', '_ios\\.(cc|mm)$'], | 559 ['include', '_ios\\.(cc|mm)$'], |
561 ['include', '(^|/)ios/'], | 560 ['include', '(^|/)ios/'], |
562 ['include', '^common/chrome_version_info\\.cc$'], | 561 ['include', '^common/chrome_version_info\\.cc$'], |
563 ['include', '^common/translate'], | 562 ['include', '^common/translate'], |
564 ['include', '^common/zip'], | 563 ['include', '^common/zip'], |
565 ], | 564 ], |
566 'include_dirs': [ | 565 'include_dirs': [ |
567 '<(DEPTH)/breakpad/src', | 566 '<(DEPTH)/breakpad/src', |
568 ], | 567 ], |
569 }], | 568 }], |
| 569 ['OS!="ios" and chrome_multiple_dll!=1', { |
| 570 'dependencies': [ |
| 571 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
| 572 ], |
| 573 }], |
570 ['OS=="android"', { | 574 ['OS=="android"', { |
571 'sources/': [ | 575 'sources/': [ |
572 ['exclude', '^common/chrome_version_info_posix.cc'], | 576 ['exclude', '^common/chrome_version_info_posix.cc'], |
573 ['exclude', '^common/service_'], | 577 ['exclude', '^common/service_'], |
574 ], | 578 ], |
575 'dependencies!': [ | 579 'dependencies!': [ |
576 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 580 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
577 ], | 581 ], |
578 }], | 582 }], |
579 ['OS=="win"', { | 583 ['OS=="win"', { |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 'common/metrics/proto/user_action_event.proto', | 837 'common/metrics/proto/user_action_event.proto', |
834 ], | 838 ], |
835 'variables': { | 839 'variables': { |
836 'proto_in_dir': 'common/metrics/proto', | 840 'proto_in_dir': 'common/metrics/proto', |
837 'proto_out_dir': 'chrome/common/metrics/proto', | 841 'proto_out_dir': 'chrome/common/metrics/proto', |
838 }, | 842 }, |
839 'includes': [ '../build/protoc.gypi' ], | 843 'includes': [ '../build/protoc.gypi' ], |
840 }, | 844 }, |
841 ], | 845 ], |
842 } | 846 } |
OLD | NEW |