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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ], | 56 ], |
57 'sources': [ | 57 'sources': [ |
58 '../apps/app_shim/app_shim_launch.h', | 58 '../apps/app_shim/app_shim_launch.h', |
59 '../apps/app_shim/app_shim_messages.h', | 59 '../apps/app_shim/app_shim_messages.h', |
60 'common/all_messages.h', | 60 'common/all_messages.h', |
61 'common/attrition_experiments.h', | 61 'common/attrition_experiments.h', |
62 'common/auto_start_linux.cc', | 62 'common/auto_start_linux.cc', |
63 'common/auto_start_linux.h', | 63 'common/auto_start_linux.h', |
64 'common/autocomplete_match_type.cc', | 64 'common/autocomplete_match_type.cc', |
65 'common/autocomplete_match_type.h', | 65 'common/autocomplete_match_type.h', |
66 'common/automation_constants.cc', | |
67 'common/automation_constants.h', | |
68 'common/automation_messages.h', | |
69 'common/automation_messages_internal.h', | |
70 'common/badge_util.cc', | 66 'common/badge_util.cc', |
71 'common/badge_util.h', | 67 'common/badge_util.h', |
72 'common/child_process_logging.h', | 68 'common/child_process_logging.h', |
73 'common/child_process_logging_win.cc', | 69 'common/child_process_logging_win.cc', |
74 'common/chrome_content_client.cc', | 70 'common/chrome_content_client.cc', |
75 'common/chrome_content_client.h', | 71 'common/chrome_content_client.h', |
76 'common/chrome_content_client_constants.cc', | 72 'common/chrome_content_client_constants.cc', |
77 'common/chrome_content_client_ios.mm', | 73 'common/chrome_content_client_ios.mm', |
78 'common/chrome_result_codes.h', | 74 'common/chrome_result_codes.h', |
79 'common/chrome_utility_messages.h', | 75 'common/chrome_utility_messages.h', |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 'sources!': [ | 493 'sources!': [ |
498 'common/child_process_logging_posix.cc', | 494 'common/child_process_logging_posix.cc', |
499 'common/chrome_version_info_posix.cc', | 495 'common/chrome_version_info_posix.cc', |
500 ], | 496 ], |
501 }], | 497 }], |
502 ['remoting==1', { | 498 ['remoting==1', { |
503 'dependencies': [ | 499 'dependencies': [ |
504 '../remoting/remoting.gyp:remoting_client_plugin', | 500 '../remoting/remoting.gyp:remoting_client_plugin', |
505 ], | 501 ], |
506 }], | 502 }], |
507 ['enable_automation==0', { | |
508 'sources/': [ | |
509 ['exclude', '^common/automation_'] | |
510 ] | |
511 }], | |
512 ['enable_plugins==0', { | 503 ['enable_plugins==0', { |
513 'source!' : [ | 504 'source!' : [ |
514 'common/pepper_permission_util.cc', | 505 'common/pepper_permission_util.cc', |
515 ], | 506 ], |
516 }], | 507 }], |
517 ['enable_webrtc==0', { | 508 ['enable_webrtc==0', { |
518 'sources!': [ | 509 'sources!': [ |
519 'common/media/webrtc_logging_messages.h', | 510 'common/media/webrtc_logging_messages.h', |
520 ] | 511 ] |
521 }], | 512 }], |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 'common/metrics/proto/user_action_event.proto', | 708 'common/metrics/proto/user_action_event.proto', |
718 ], | 709 ], |
719 'variables': { | 710 'variables': { |
720 'proto_in_dir': 'common/metrics/proto', | 711 'proto_in_dir': 'common/metrics/proto', |
721 'proto_out_dir': 'chrome/common/metrics/proto', | 712 'proto_out_dir': 'chrome/common/metrics/proto', |
722 }, | 713 }, |
723 'includes': [ '../build/protoc.gypi' ], | 714 'includes': [ '../build/protoc.gypi' ], |
724 }, | 715 }, |
725 ], | 716 ], |
726 } | 717 } |
OLD | NEW |