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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
9 '../gpu/gpu.gyp:gpu_ipc', | 9 '../gpu/gpu.gyp:gpu_ipc', |
10 '../ipc/ipc.gyp:ipc', | 10 '../ipc/ipc.gyp:ipc', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'common/child_thread.cc', | 63 'common/child_thread.cc', |
64 'common/child_thread.h', | 64 'common/child_thread.h', |
65 'common/child_trace_message_filter.cc', | 65 'common/child_trace_message_filter.cc', |
66 'common/child_trace_message_filter.h', | 66 'common/child_trace_message_filter.h', |
67 'common/chrome_application_mac.h', | 67 'common/chrome_application_mac.h', |
68 'common/chrome_application_mac.mm', | 68 'common/chrome_application_mac.mm', |
69 'common/chrome_descriptors.h', | 69 'common/chrome_descriptors.h', |
70 'common/cloud_print_class_mac.h', | 70 'common/cloud_print_class_mac.h', |
71 'common/cloud_print_class_mac.mm', | 71 'common/cloud_print_class_mac.mm', |
72 'common/clipboard_messages.h', | 72 'common/clipboard_messages.h', |
73 'common/common_param_traits.cc', | |
74 'common/common_param_traits.h', | |
75 'common/content_message_generator.cc', | 73 'common/content_message_generator.cc', |
76 'common/content_message_generator.h', | 74 'common/content_message_generator.h', |
77 'common/content_export.h', | 75 'common/content_export.h', |
78 'common/content_constants.cc', | 76 'common/content_constants.cc', |
79 'common/content_constants.h', | 77 'common/content_constants.h', |
80 'common/content_counters.cc', | 78 'common/content_counters.cc', |
81 'common/content_counters.h', | 79 'common/content_counters.h', |
82 'common/content_paths.cc', | 80 'common/content_paths.cc', |
83 'common/content_paths.h', | 81 'common/content_paths.h', |
84 'common/content_restriction.h', | 82 'common/content_restriction.h', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'common/unix_domain_socket_posix.cc', | 233 'common/unix_domain_socket_posix.cc', |
236 'common/unix_domain_socket_posix.h', | 234 'common/unix_domain_socket_posix.h', |
237 'common/utility_messages.h', | 235 'common/utility_messages.h', |
238 'common/view_messages.h', | 236 'common/view_messages.h', |
239 'common/view_message_enums.h', | 237 'common/view_message_enums.h', |
240 'common/web_database_observer_impl.cc', | 238 'common/web_database_observer_impl.cc', |
241 'common/web_database_observer_impl.h', | 239 'common/web_database_observer_impl.h', |
242 'common/webblobregistry_impl.cc', | 240 'common/webblobregistry_impl.cc', |
243 'common/webblobregistry_impl.h', | 241 'common/webblobregistry_impl.h', |
244 'common/webblob_messages.h', | 242 'common/webblob_messages.h', |
245 'common/webkit_param_traits.cc', | |
246 'common/webkit_param_traits.h', | |
247 'common/webmessageportchannel_impl.cc', | 243 'common/webmessageportchannel_impl.cc', |
248 'common/webmessageportchannel_impl.h', | 244 'common/webmessageportchannel_impl.h', |
249 'common/worker_messages.h', | 245 'common/worker_messages.h', |
| 246 'public/common/common_param_traits.cc', |
| 247 'public/common/common_param_traits.h', |
250 'public/common/content_client.cc', | 248 'public/common/content_client.cc', |
251 'public/common/content_client.h', | 249 'public/common/content_client.h', |
252 'public/common/window_container_type.cc', | 250 'public/common/window_container_type.cc', |
253 'public/common/window_container_type.h', | 251 'public/common/window_container_type.h', |
| 252 'public/common/webkit_param_traits.cc', |
| 253 'public/common/webkit_param_traits.h', |
254 ], | 254 ], |
255 'conditions': [ | 255 'conditions': [ |
256 ['OS!="win"', { | 256 ['OS!="win"', { |
257 'sources!': [ | 257 'sources!': [ |
258 'common/sandbox_policy.cc', | 258 'common/sandbox_policy.cc', |
259 'common/sandbox_policy.h', | 259 'common/sandbox_policy.h', |
260 ], | 260 ], |
261 }], | 261 }], |
262 ['OS=="mac"', { | 262 ['OS=="mac"', { |
263 'sources!': [ | 263 'sources!': [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 ], | 324 ], |
325 'link_settings': { | 325 'link_settings': { |
326 'libraries': [ | 326 'libraries': [ |
327 '-lEGL', | 327 '-lEGL', |
328 '-lGLESv2', | 328 '-lGLESv2', |
329 ], | 329 ], |
330 }, | 330 }, |
331 }], | 331 }], |
332 ], | 332 ], |
333 } | 333 } |
OLD | NEW |