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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 'common/chrome_application_mac.mm', | 61 'common/chrome_application_mac.mm', |
62 'common/chrome_descriptors.h', | 62 'common/chrome_descriptors.h', |
63 'common/cloud_print_class_mac.h', | 63 'common/cloud_print_class_mac.h', |
64 'common/cloud_print_class_mac.mm', | 64 'common/cloud_print_class_mac.mm', |
65 'common/clipboard_messages.h', | 65 'common/clipboard_messages.h', |
66 'common/common_param_traits.cc', | 66 'common/common_param_traits.cc', |
67 'common/common_param_traits.h', | 67 'common/common_param_traits.h', |
68 'common/content_message_generator.cc', | 68 'common/content_message_generator.cc', |
69 'common/content_message_generator.h', | 69 'common/content_message_generator.h', |
70 'common/content_export.h', | 70 'common/content_export.h', |
71 'common/content_client.cc', | |
72 'common/content_client.h', | |
73 'common/content_constants.cc', | 71 'common/content_constants.cc', |
74 'common/content_constants.h', | 72 'common/content_constants.h', |
75 'common/content_counters.cc', | 73 'common/content_counters.cc', |
76 'common/content_counters.h', | 74 'common/content_counters.h', |
77 'common/content_paths.cc', | 75 'common/content_paths.cc', |
78 'common/content_paths.h', | 76 'common/content_paths.h', |
79 'common/content_restriction.h', | 77 'common/content_restriction.h', |
80 'common/css_colors.h', | 78 'common/css_colors.h', |
81 'common/database_messages.h', | 79 'common/database_messages.h', |
82 'common/database_util.cc', | 80 'common/database_util.cc', |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'common/webblobregistry_impl.cc', | 248 'common/webblobregistry_impl.cc', |
251 'common/webblobregistry_impl.h', | 249 'common/webblobregistry_impl.h', |
252 'common/webblob_messages.h', | 250 'common/webblob_messages.h', |
253 'common/webkit_param_traits.cc', | 251 'common/webkit_param_traits.cc', |
254 'common/webkit_param_traits.h', | 252 'common/webkit_param_traits.h', |
255 'common/webmessageportchannel_impl.cc', | 253 'common/webmessageportchannel_impl.cc', |
256 'common/webmessageportchannel_impl.h', | 254 'common/webmessageportchannel_impl.h', |
257 'common/window_container_type.cc', | 255 'common/window_container_type.cc', |
258 'common/window_container_type.h', | 256 'common/window_container_type.h', |
259 'common/worker_messages.h', | 257 'common/worker_messages.h', |
| 258 'public/common/content_client.cc', |
| 259 'public/common/content_client.h', |
260 ], | 260 ], |
261 'conditions': [ | 261 'conditions': [ |
262 ['OS!="win"', { | 262 ['OS!="win"', { |
263 'sources!': [ | 263 'sources!': [ |
264 'common/sandbox_policy.cc', | 264 'common/sandbox_policy.cc', |
265 'common/sandbox_policy.h', | 265 'common/sandbox_policy.h', |
266 ], | 266 ], |
267 }], | 267 }], |
268 ['OS=="mac"', { | 268 ['OS=="mac"', { |
269 'sources!': [ | 269 'sources!': [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 ], | 330 ], |
331 'link_settings': { | 331 'link_settings': { |
332 'libraries': [ | 332 'libraries': [ |
333 '-lEGL', | 333 '-lEGL', |
334 '-lGLESv2', | 334 '-lGLESv2', |
335 ], | 335 ], |
336 }, | 336 }, |
337 }], | 337 }], |
338 ], | 338 ], |
339 } | 339 } |
OLD | NEW |