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