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': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 '..', | 23 '..', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 'common/appcache/appcache_backend_proxy.cc', | 26 'common/appcache/appcache_backend_proxy.cc', |
27 'common/appcache/appcache_backend_proxy.h', | 27 'common/appcache/appcache_backend_proxy.h', |
28 'common/appcache/appcache_dispatcher.cc', | 28 'common/appcache/appcache_dispatcher.cc', |
29 'common/appcache/appcache_dispatcher.h', | 29 'common/appcache/appcache_dispatcher.h', |
30 'common/appcache_messages.h', | 30 'common/appcache_messages.h', |
31 'common/audio_messages.h', | 31 'common/audio_messages.h', |
32 'common/audio_stream_state.h', | 32 'common/audio_stream_state.h', |
| 33 'common/bindings_policy.h', |
33 'common/child_process.cc', | 34 'common/child_process.cc', |
34 'common/child_process.h', | 35 'common/child_process.h', |
35 'common/child_process_host.cc', | 36 'common/child_process_host.cc', |
36 'common/child_process_host.h', | 37 'common/child_process_host.h', |
37 'common/child_process_info.cc', | 38 'common/child_process_info.cc', |
38 'common/child_process_info.h', | 39 'common/child_process_info.h', |
39 'common/child_process_messages.h', | 40 'common/child_process_messages.h', |
40 'common/child_thread.cc', | 41 'common/child_thread.cc', |
41 'common/child_thread.h', | 42 'common/child_thread.h', |
42 'common/child_trace_message_filter.cc', | 43 'common/child_trace_message_filter.cc', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 'common/set_process_title_linux.cc', | 194 'common/set_process_title_linux.cc', |
194 'common/set_process_title_linux.h', | 195 'common/set_process_title_linux.h', |
195 'common/socket_stream.h', | 196 'common/socket_stream.h', |
196 'common/socket_stream_dispatcher.cc', | 197 'common/socket_stream_dispatcher.cc', |
197 'common/socket_stream_dispatcher.h', | 198 'common/socket_stream_dispatcher.h', |
198 'common/socket_stream_messages.h', | 199 'common/socket_stream_messages.h', |
199 'common/speech_input_messages.h', | 200 'common/speech_input_messages.h', |
200 'common/speech_input_result.h', | 201 'common/speech_input_result.h', |
201 'common/unix_domain_socket_posix.cc', | 202 'common/unix_domain_socket_posix.cc', |
202 'common/unix_domain_socket_posix.h', | 203 'common/unix_domain_socket_posix.h', |
| 204 'common/url_constants.cc', |
| 205 'common/url_constants.h', |
203 'common/video_capture_messages.h', | 206 'common/video_capture_messages.h', |
204 'common/view_messages.h', | 207 'common/view_messages.h', |
205 'common/web_database_observer_impl.cc', | 208 'common/web_database_observer_impl.cc', |
206 'common/web_database_observer_impl.h', | 209 'common/web_database_observer_impl.h', |
207 'common/webblobregistry_impl.cc', | 210 'common/webblobregistry_impl.cc', |
208 'common/webblobregistry_impl.h', | 211 'common/webblobregistry_impl.h', |
209 'common/webblob_messages.h', | 212 'common/webblob_messages.h', |
210 'common/webkit_param_traits.cc', | 213 'common/webkit_param_traits.cc', |
211 'common/webkit_param_traits.h', | 214 'common/webkit_param_traits.h', |
212 'common/webmessageportchannel_impl.cc', | 215 'common/webmessageportchannel_impl.cc', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 }], | 264 }], |
262 ['enable_gpu==1', { | 265 ['enable_gpu==1', { |
263 'dependencies': [ | 266 'dependencies': [ |
264 '../gpu/gpu.gyp:command_buffer_service', | 267 '../gpu/gpu.gyp:command_buffer_service', |
265 ], | 268 ], |
266 }], | 269 }], |
267 ], | 270 ], |
268 }, | 271 }, |
269 ], | 272 ], |
270 } | 273 } |
OLD | NEW |