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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 'sources!': [ | 421 'sources!': [ |
422 'common/extensions/api/extension_api_stub.cc', | 422 'common/extensions/api/extension_api_stub.cc', |
423 ], | 423 ], |
424 'dependencies': [ | 424 'dependencies': [ |
425 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 425 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
426 '../device/usb/usb.gyp:device_usb', | 426 '../device/usb/usb.gyp:device_usb', |
427 ], | 427 ], |
428 }, { # enable_extensions == 0 | 428 }, { # enable_extensions == 0 |
429 'sources/': [ | 429 'sources/': [ |
430 ['exclude', '^common/extensions/api/'], | 430 ['exclude', '^common/extensions/api/'], |
| 431 ['exclude', '^common/networking_private_messages.*'], |
431 ['include', 'common/extensions/api/extension_api_stub.cc'], | 432 ['include', 'common/extensions/api/extension_api_stub.cc'], |
432 ['include', 'common/extensions/api/extension_action/action_info.cc']
, | 433 ['include', 'common/extensions/api/extension_action/action_info.cc']
, |
433 ['include', 'common/extensions/api/extension_action/action_info.h'], | 434 ['include', 'common/extensions/api/extension_action/action_info.h'], |
434 ['include', 'common/extensions/api/i18n/default_locale_handler.cc'], | 435 ['include', 'common/extensions/api/i18n/default_locale_handler.cc'], |
435 ['include', 'common/extensions/api/i18n/default_locale_handler.h'], | 436 ['include', 'common/extensions/api/i18n/default_locale_handler.h'], |
436 ['include', 'common/extensions/api/identity/oauth2_manifest_handler.
cc'], | 437 ['include', 'common/extensions/api/identity/oauth2_manifest_handler.
cc'], |
437 ['include', 'common/extensions/api/identity/oauth2_manifest_handler.
h'], | 438 ['include', 'common/extensions/api/identity/oauth2_manifest_handler.
h'], |
438 ['include', 'common/extensions/api/managed_mode_private/managed_mode
_handler.cc'], | 439 ['include', 'common/extensions/api/managed_mode_private/managed_mode
_handler.cc'], |
439 ['include', 'common/extensions/api/managed_mode_private/managed_mode
_handler.h'], | 440 ['include', 'common/extensions/api/managed_mode_private/managed_mode
_handler.h'], |
440 ['include', 'common/extensions/api/plugins/plugins_handler.cc'], | 441 ['include', 'common/extensions/api/plugins/plugins_handler.cc'], |
441 ['include', 'common/extensions/api/plugins/plugins_handler.h'], | 442 ['include', 'common/extensions/api/plugins/plugins_handler.h'], |
442 ['include', 'common/extensions/api/storage/storage_schema_manifest_h
andler.cc'], | 443 ['include', 'common/extensions/api/storage/storage_schema_manifest_h
andler.cc'], |
443 ['include', 'common/extensions/api/storage/storage_schema_manifest_h
andler.h'], | 444 ['include', 'common/extensions/api/storage/storage_schema_manifest_h
andler.h'], |
444 ], | 445 ], |
445 }], | 446 }], |
446 ['OS=="win" or OS=="mac"', { | 447 ['OS=="win" or OS=="mac"', { |
447 'sources': [ | 448 'sources': [ |
448 'common/media_galleries/itunes_library.cc', | 449 'common/media_galleries/itunes_library.cc', |
449 'common/media_galleries/itunes_library.h', | 450 'common/media_galleries/itunes_library.h', |
450 'common/media_galleries/picasa_types.cc', | 451 'common/media_galleries/picasa_types.cc', |
451 'common/media_galleries/picasa_types.h', | 452 'common/media_galleries/picasa_types.h', |
452 'common/media_galleries/pmp_constants.h', | 453 'common/media_galleries/pmp_constants.h', |
| 454 'common/networking_private_messages.cc', |
| 455 'common/networking_private_messages.h', |
453 ], | 456 ], |
454 }], | 457 }], |
455 ['OS=="mac"', { | 458 ['OS=="mac"', { |
456 'sources': [ | 459 'sources': [ |
457 'common/media_galleries/iphoto_library.cc', | 460 'common/media_galleries/iphoto_library.cc', |
458 'common/media_galleries/iphoto_library.h', | 461 'common/media_galleries/iphoto_library.h', |
459 ], | 462 ], |
460 }], | 463 }], |
461 ['OS != "ios"', { | 464 ['OS != "ios"', { |
462 'dependencies': [ | 465 'dependencies': [ |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 'common/metrics/proto/user_action_event.proto', | 793 'common/metrics/proto/user_action_event.proto', |
791 ], | 794 ], |
792 'variables': { | 795 'variables': { |
793 'proto_in_dir': 'common/metrics/proto', | 796 'proto_in_dir': 'common/metrics/proto', |
794 'proto_out_dir': 'chrome/common/metrics/proto', | 797 'proto_out_dir': 'chrome/common/metrics/proto', |
795 }, | 798 }, |
796 'includes': [ '../build/protoc.gypi' ], | 799 'includes': [ '../build/protoc.gypi' ], |
797 }, | 800 }, |
798 ], | 801 ], |
799 } | 802 } |
OLD | NEW |