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