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

Side by Side Diff: content/content_common.gypi

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 8 years, 6 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_app.gypi ('k') | content/content_jni.gypi » ('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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'public/common/url_constants.cc', 93 'public/common/url_constants.cc',
94 'public/common/url_constants.h', 94 'public/common/url_constants.h',
95 'public/common/url_fetcher.h', 95 'public/common/url_fetcher.h',
96 'public/common/url_fetcher_delegate.h', 96 'public/common/url_fetcher_delegate.h',
97 'public/common/zygote_fork_delegate_linux.h', 97 'public/common/zygote_fork_delegate_linux.h',
98 'common/accessibility_messages.h', 98 'common/accessibility_messages.h',
99 'common/android/address_parser.cc', 99 'common/android/address_parser.cc',
100 'common/android/address_parser.h', 100 'common/android/address_parser.h',
101 'common/android/address_parser_internal.cc', 101 'common/android/address_parser_internal.cc',
102 'common/android/address_parser_internal.h', 102 'common/android/address_parser_internal.h',
103 'common/android/surface_callback.cc',
104 'common/android/surface_callback.h',
105 'common/android/surface_texture_peer.cc',
106 'common/android/surface_texture_peer.h',
103 'common/appcache/appcache_backend_proxy.cc', 107 'common/appcache/appcache_backend_proxy.cc',
104 'common/appcache/appcache_backend_proxy.h', 108 'common/appcache/appcache_backend_proxy.h',
105 'common/appcache/appcache_dispatcher.cc', 109 'common/appcache/appcache_dispatcher.cc',
106 'common/appcache/appcache_dispatcher.h', 110 'common/appcache/appcache_dispatcher.h',
107 'common/appcache_messages.h', 111 'common/appcache_messages.h',
108 'common/browser_plugin_messages.h', 112 'common/browser_plugin_messages.h',
109 'common/child_process.cc', 113 'common/child_process.cc',
110 'common/child_process.h', 114 'common/child_process.h',
111 'common/child_process_host_impl.cc', 115 'common/child_process_host_impl.cc',
112 'common/child_process_host_impl.h', 116 'common/child_process_host_impl.h',
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 'public/common/webkit_param_traits.cc', 343 'public/common/webkit_param_traits.cc',
340 'public/common/webkit_param_traits.h', 344 'public/common/webkit_param_traits.h',
341 ], 345 ],
342 'conditions': [ 346 'conditions': [
343 ['OS!="win"', { 347 ['OS!="win"', {
344 'sources!': [ 348 'sources!': [
345 'common/sandbox_policy.cc', 349 'common/sandbox_policy.cc',
346 'common/sandbox_policy.h', 350 'common/sandbox_policy.h',
347 ], 351 ],
348 }], 352 }],
353 ['OS=="android"',{
354 'link_settings': {
355 'libraries': [
356 '-landroid', # ANativeWindow
357 ],
358 },
359 'dependencies': [
360 'content.gyp:content_jni_headers',
361 'content.gyp:common_aidl',
362 ],
363 }],
349 ['toolkit_uses_gtk == 1', { 364 ['toolkit_uses_gtk == 1', {
350 'dependencies': [ 365 'dependencies': [
351 '../build/linux/system.gyp:gtk', 366 '../build/linux/system.gyp:gtk',
352 ], 367 ],
353 }], 368 }],
354 ['use_x11 == 1', { 369 ['use_x11 == 1', {
355 'dependencies': [ 370 'dependencies': [
356 '../build/linux/system.gyp:pangocairo', 371 '../build/linux/system.gyp:pangocairo',
357 ], 372 ],
358 'include_dirs': [ 373 'include_dirs': [
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 '../build/extract_from_cab.py', 467 '../build/extract_from_cab.py',
453 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 468 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
454 '<(output)', 469 '<(output)',
455 '<(PRODUCT_DIR)', 470 '<(PRODUCT_DIR)',
456 ], 471 ],
457 }, 472 },
458 ] 473 ]
459 }] 474 }]
460 ], 475 ],
461 } 476 }
OLDNEW
« no previous file with comments | « content/content_app.gypi ('k') | content/content_jni.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698