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

Side by Side Diff: content/content_renderer.gypi

Issue 8589001: Load mac sandbox definitions from resources instead of the bundle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 9 years, 1 month 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
OLDNEW
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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 9 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 }], 239 }],
240 ], 240 ],
241 'dependencies': [ 241 'dependencies': [
242 '../build/linux/system.gyp:gtk', 242 '../build/linux/system.gyp:gtk',
243 ], 243 ],
244 }], 244 }],
245 ['OS=="mac"', { 245 ['OS=="mac"', {
246 'sources!': [ 246 'sources!': [
247 'common/process_watcher_posix.cc', 247 'common/process_watcher_posix.cc',
248 ], 248 ],
249 'link_settings': {
250 'mac_bundle_resources': [
251 'renderer/renderer.sb',
252 ],
253 },
254 }], 249 }],
255 ['OS=="win" and win_use_allocator_shim==1', { 250 ['OS=="win" and win_use_allocator_shim==1', {
256 'dependencies': [ 251 'dependencies': [
257 '../base/allocator/allocator.gyp:allocator', 252 '../base/allocator/allocator.gyp:allocator',
258 ], 253 ],
259 }], 254 }],
260 ['enable_webrtc==1', { 255 ['enable_webrtc==1', {
261 'dependencies': [ 256 'dependencies': [
262 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 257 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
263 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers', 258 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
(...skipping 14 matching lines...) Expand all
278 }, { 273 }, {
279 'sources!': [ 274 'sources!': [
280 'renderer/java/java_bridge_channel.cc', 275 'renderer/java/java_bridge_channel.cc',
281 'renderer/java/java_bridge_channel.h', 276 'renderer/java/java_bridge_channel.h',
282 'renderer/java/java_bridge_dispatcher.cc', 277 'renderer/java/java_bridge_dispatcher.cc',
283 'renderer/java/java_bridge_dispatcher.h', 278 'renderer/java/java_bridge_dispatcher.h',
284 ], 279 ],
285 }], 280 }],
286 ], 281 ],
287 } 282 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698