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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 'common/importer/importer_url_row.h', | 233 'common/importer/importer_url_row.h', |
234 'common/importer/profile_import_process_messages.cc', | 234 'common/importer/profile_import_process_messages.cc', |
235 'common/importer/profile_import_process_messages.h', | 235 'common/importer/profile_import_process_messages.h', |
236 'common/importer/safari_importer_utils.h', | 236 'common/importer/safari_importer_utils.h', |
237 'common/importer/safari_importer_utils.mm', | 237 'common/importer/safari_importer_utils.mm', |
238 'common/instant_restricted_id_cache.h', | 238 'common/instant_restricted_id_cache.h', |
239 'common/instant_types.cc', | 239 'common/instant_types.cc', |
240 'common/instant_types.h', | 240 'common/instant_types.h', |
241 'common/localized_error.cc', | 241 'common/localized_error.cc', |
242 'common/localized_error.h', | 242 'common/localized_error.h', |
| 243 'common/local_discovery/service_discovery_client.cc', |
| 244 'common/local_discovery/service_discovery_client.h', |
243 'common/logging_chrome.cc', | 245 'common/logging_chrome.cc', |
244 'common/logging_chrome.h', | 246 'common/logging_chrome.h', |
245 'common/mac/app_mode_common.h', | 247 'common/mac/app_mode_common.h', |
246 'common/mac/app_mode_common.mm', | 248 'common/mac/app_mode_common.mm', |
247 'common/mac/cfbundle_blocker.h', | 249 'common/mac/cfbundle_blocker.h', |
248 'common/mac/cfbundle_blocker.mm', | 250 'common/mac/cfbundle_blocker.mm', |
249 'common/mac/launchd.h', | 251 'common/mac/launchd.h', |
250 'common/mac/launchd.mm', | 252 'common/mac/launchd.mm', |
251 'common/mac/objc_method_swizzle.h', | 253 'common/mac/objc_method_swizzle.h', |
252 'common/mac/objc_method_swizzle.mm', | 254 'common/mac/objc_method_swizzle.mm', |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 ], | 419 ], |
418 'include_dirs': [ | 420 'include_dirs': [ |
419 '<(DEPTH)/breakpad/src', | 421 '<(DEPTH)/breakpad/src', |
420 ], | 422 ], |
421 }], | 423 }], |
422 ['enable_printing!=0', { | 424 ['enable_printing!=0', { |
423 'dependencies': [ | 425 'dependencies': [ |
424 '<(DEPTH)/printing/printing.gyp:printing', | 426 '<(DEPTH)/printing/printing.gyp:printing', |
425 ], | 427 ], |
426 }], | 428 }], |
427 ['enable_service_discovery==1', { | |
428 'sources' : [ | |
429 'common/local_discovery/service_discovery_client.cc', | |
430 'common/local_discovery/service_discovery_client.h', | |
431 ] | |
432 }], | |
433 ['enable_mdns==1', { | |
434 'sources' : [ | |
435 'common/local_discovery/service_discovery_client_impl.cc', | |
436 'common/local_discovery/service_discovery_client_impl.h', | |
437 ] | |
438 }], | |
439 ['OS=="android"', { | 429 ['OS=="android"', { |
440 'sources/': [ | 430 'sources/': [ |
441 ['exclude', '^common/chrome_version_info_posix.cc'], | 431 ['exclude', '^common/chrome_version_info_posix.cc'], |
442 ['exclude', '^common/importer/'], | 432 ['exclude', '^common/importer/'], |
443 ['include', '^common/importer/imported_favicon_usage.cc$'], | 433 ['include', '^common/importer/imported_favicon_usage.cc$'], |
444 ['include', '^common/importer/imported_favicon_usage.h$'], | 434 ['include', '^common/importer/imported_favicon_usage.h$'], |
445 ['exclude', '^common/service_'], | 435 ['exclude', '^common/service_'], |
446 ], | 436 ], |
447 'sources!': [ | 437 'sources!': [ |
448 'common/badge_util.cc', | 438 'common/badge_util.cc', |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 'common/metrics/proto/user_action_event.proto', | 688 'common/metrics/proto/user_action_event.proto', |
699 ], | 689 ], |
700 'variables': { | 690 'variables': { |
701 'proto_in_dir': 'common/metrics/proto', | 691 'proto_in_dir': 'common/metrics/proto', |
702 'proto_out_dir': 'chrome/common/metrics/proto', | 692 'proto_out_dir': 'chrome/common/metrics/proto', |
703 }, | 693 }, |
704 'includes': [ '../build/protoc.gypi' ], | 694 'includes': [ '../build/protoc.gypi' ], |
705 }, | 695 }, |
706 ], | 696 ], |
707 } | 697 } |
OLD | NEW |