| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'content_common', | 8 'target_name': 'content_common', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../ipc/ipc.gyp:ipc', | 11 '../ipc/ipc.gyp:ipc', |
| 12 ], | 12 ], |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '..', | 14 '..', |
| 15 ], | 15 ], |
| 16 'sources': [ | 16 'sources': [ |
| 17 'common/common_param_traits.cc', | 17 'common/common_param_traits.cc', |
| 18 'common/common_param_traits.h', | 18 'common/common_param_traits.h', |
| 19 'common/content_message_generator.cc', | 19 'common/content_message_generator.cc', |
| 20 'common/content_message_generator.h', | 20 'common/content_message_generator.h', |
| 21 'common/content_constants.cc', | 21 'common/content_constants.cc', |
| 22 'common/content_constants.h', | 22 'common/content_constants.h', |
| 23 'common/content_switches.cc', | 23 'common/content_switches.cc', |
| 24 'common/content_switches.h', | 24 'common/content_switches.h', |
| 25 'common/file_system_messages.h', |
| 25 'common/message_router.cc', | 26 'common/message_router.cc', |
| 26 'common/message_router.h', | 27 'common/message_router.h', |
| 27 'common/notification_details.cc', | 28 'common/notification_details.cc', |
| 28 'common/notification_details.h', | 29 'common/notification_details.h', |
| 29 'common/notification_observer.h', | 30 'common/notification_observer.h', |
| 30 'common/notification_registrar.cc', | 31 'common/notification_registrar.cc', |
| 31 'common/notification_registrar.h', | 32 'common/notification_registrar.h', |
| 32 'common/notification_service.cc', | 33 'common/notification_service.cc', |
| 33 'common/notification_service.h', | 34 'common/notification_service.h', |
| 34 'common/notification_source.cc', | 35 'common/notification_source.cc', |
| 35 'common/notification_source.h', | 36 'common/notification_source.h', |
| 36 'common/notification_type.h', | 37 'common/notification_type.h', |
| 37 'common/p2p_messages.h', | 38 'common/p2p_messages.h', |
| 38 'common/p2p_sockets.cc', | 39 'common/p2p_sockets.cc', |
| 39 'common/p2p_sockets.h', | 40 'common/p2p_sockets.h', |
| 40 'common/resource_messages.h', | 41 'common/resource_messages.h', |
| 41 'common/resource_response.cc', | 42 'common/resource_response.cc', |
| 42 'common/resource_response.h', | 43 'common/resource_response.h', |
| 43 'common/socket_stream.h', | 44 'common/socket_stream.h', |
| 44 'common/socket_stream_messages.h', | 45 'common/socket_stream_messages.h', |
| 45 ], | 46 ], |
| 46 'conditions': [ | 47 'conditions': [ |
| 47 ['OS=="win"', { | 48 ['OS=="win"', { |
| 48 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 49 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
| 49 }], | 50 }], |
| 50 ], | 51 ], |
| 51 }, | 52 }, |
| 52 ], | 53 ], |
| 53 } | 54 } |
| OLD | NEW |