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 '../third_party/icu/icu.gyp:icuuc', | 12 '../third_party/icu/icu.gyp:icuuc', |
| 13 '../third_party/npapi/npapi.gyp:npapi', |
13 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 14 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
14 '../webkit/support/webkit_support.gyp:appcache', | 15 '../webkit/support/webkit_support.gyp:appcache', |
15 '../webkit/support/webkit_support.gyp:blob', | 16 '../webkit/support/webkit_support.gyp:blob', |
16 '../webkit/support/webkit_support.gyp:database', | 17 '../webkit/support/webkit_support.gyp:database', |
17 '../webkit/support/webkit_support.gyp:fileapi', | 18 '../webkit/support/webkit_support.gyp:fileapi', |
18 ], | 19 ], |
19 'include_dirs': [ | 20 'include_dirs': [ |
20 '..', | 21 '..', |
21 ], | 22 ], |
22 'sources': [ | 23 'sources': [ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 'common/notification_observer.h', | 87 'common/notification_observer.h', |
87 'common/notification_registrar.cc', | 88 'common/notification_registrar.cc', |
88 'common/notification_registrar.h', | 89 'common/notification_registrar.h', |
89 'common/notification_service.cc', | 90 'common/notification_service.cc', |
90 'common/notification_service.h', | 91 'common/notification_service.h', |
91 'common/notification_source.cc', | 92 'common/notification_source.cc', |
92 'common/notification_source.h', | 93 'common/notification_source.h', |
93 'common/notification_type.h', | 94 'common/notification_type.h', |
94 'common/p2p_messages.h', | 95 'common/p2p_messages.h', |
95 'common/p2p_sockets.h', | 96 'common/p2p_sockets.h', |
| 97 'common/plugin_messages.h', |
96 'common/property_bag.cc', | 98 'common/property_bag.cc', |
97 'common/property_bag.h', | 99 'common/property_bag.h', |
98 'common/resource_dispatcher.cc', | 100 'common/resource_dispatcher.cc', |
99 'common/resource_dispatcher.h', | 101 'common/resource_dispatcher.h', |
100 'common/resource_messages.h', | 102 'common/resource_messages.h', |
101 'common/resource_response.cc', | 103 'common/resource_response.cc', |
102 'common/resource_response.h', | 104 'common/resource_response.h', |
103 'common/sandbox_init_wrapper.h', | 105 'common/sandbox_init_wrapper.h', |
104 'common/sandbox_init_wrapper_linux.cc', | 106 'common/sandbox_init_wrapper_linux.cc', |
105 'common/sandbox_init_wrapper_mac.cc', | 107 'common/sandbox_init_wrapper_mac.cc', |
(...skipping 14 matching lines...) Expand all Loading... |
120 'common/worker_messages.h', | 122 'common/worker_messages.h', |
121 ], | 123 ], |
122 'conditions': [ | 124 'conditions': [ |
123 ['OS=="win"', { | 125 ['OS=="win"', { |
124 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 126 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
125 }], | 127 }], |
126 ], | 128 ], |
127 }, | 129 }, |
128 ], | 130 ], |
129 } | 131 } |
OLD | NEW |