Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: content/content_common.gypi

Issue 10388013: Move the Linux zygote stuff into its own per-process directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/zygote_host_linux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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:gles2_implementation', 9 '../gpu/gpu.gyp:gles2_implementation',
10 '../gpu/gpu.gyp:gpu_ipc', 10 '../gpu/gpu.gyp:gpu_ipc',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'public/common/pepper_plugin_info.cc', 65 'public/common/pepper_plugin_info.cc',
66 'public/common/pepper_plugin_info.h', 66 'public/common/pepper_plugin_info.h',
67 'public/common/process_type.h', 67 'public/common/process_type.h',
68 'public/common/referrer.h', 68 'public/common/referrer.h',
69 'public/common/renderer_preferences.cc', 69 'public/common/renderer_preferences.cc',
70 'public/common/renderer_preferences.h', 70 'public/common/renderer_preferences.h',
71 'public/common/resource_dispatcher_delegate.h', 71 'public/common/resource_dispatcher_delegate.h',
72 'public/common/resource_response.h', 72 'public/common/resource_response.h',
73 'public/common/result_codes.h', 73 'public/common/result_codes.h',
74 'public/common/sandbox_init.h', 74 'public/common/sandbox_init.h',
75 'public/common/sandbox_linux.h',
75 'public/common/sandbox_type_mac.h', 76 'public/common/sandbox_type_mac.h',
76 'public/common/security_style.h', 77 'public/common/security_style.h',
77 'public/common/selected_file_info.h', 78 'public/common/selected_file_info.h',
78 'public/common/serialized_script_value.cc', 79 'public/common/serialized_script_value.cc',
79 'public/common/serialized_script_value.h', 80 'public/common/serialized_script_value.h',
80 'public/common/show_desktop_notification_params.cc', 81 'public/common/show_desktop_notification_params.cc',
81 'public/common/show_desktop_notification_params.h', 82 'public/common/show_desktop_notification_params.h',
82 'public/common/speech_recognition_error.h', 83 'public/common/speech_recognition_error.h',
83 'public/common/speech_recognition_result.h', 84 'public/common/speech_recognition_result.h',
84 'public/common/speech_recognition_result.cc', 85 'public/common/speech_recognition_result.cc',
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 'common/utility_messages.h', 315 'common/utility_messages.h',
315 'common/view_messages.h', 316 'common/view_messages.h',
316 'common/view_message_enums.h', 317 'common/view_message_enums.h',
317 'common/web_database_observer_impl.cc', 318 'common/web_database_observer_impl.cc',
318 'common/web_database_observer_impl.h', 319 'common/web_database_observer_impl.h',
319 'common/webkitplatformsupport_impl.cc', 320 'common/webkitplatformsupport_impl.cc',
320 'common/webkitplatformsupport_impl.h', 321 'common/webkitplatformsupport_impl.h',
321 'common/webmessageportchannel_impl.cc', 322 'common/webmessageportchannel_impl.cc',
322 'common/webmessageportchannel_impl.h', 323 'common/webmessageportchannel_impl.h',
323 'common/worker_messages.h', 324 'common/worker_messages.h',
325 'common/zygote_commands_linux.h',
324 'public/common/common_param_traits.cc', 326 'public/common/common_param_traits.cc',
325 'public/common/common_param_traits.h', 327 'public/common/common_param_traits.h',
326 'public/common/content_client.cc', 328 'public/common/content_client.cc',
327 'public/common/content_client.h', 329 'public/common/content_client.h',
328 'public/common/window_container_type.cc', 330 'public/common/window_container_type.cc',
329 'public/common/window_container_type.h', 331 'public/common/window_container_type.h',
330 'public/common/webkit_param_traits.cc', 332 'public/common/webkit_param_traits.cc',
331 'public/common/webkit_param_traits.h', 333 'public/common/webkit_param_traits.h',
332 ], 334 ],
333 'conditions': [ 335 'conditions': [
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 '../build/extract_from_cab.py', 444 '../build/extract_from_cab.py',
443 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 445 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
444 '<(output)', 446 '<(output)',
445 '<(PRODUCT_DIR)', 447 '<(PRODUCT_DIR)',
446 ], 448 ],
447 }, 449 },
448 ] 450 ]
449 }] 451 }]
450 ], 452 ],
451 } 453 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/zygote_host_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698