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

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: also remove old bundle gyp code 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 }], 231 }],
232 ], 232 ],
233 'dependencies': [ 233 'dependencies': [
234 '../build/linux/system.gyp:gtk', 234 '../build/linux/system.gyp:gtk',
235 ], 235 ],
236 }], 236 }],
237 ['OS=="mac"', { 237 ['OS=="mac"', {
238 'sources!': [ 238 'sources!': [
239 'common/process_watcher_posix.cc', 239 'common/process_watcher_posix.cc',
240 ], 240 ],
241 'link_settings': {
242 'mac_bundle_resources': [
243 'renderer/renderer.sb',
244 ],
245 },
246 }], 241 }],
247 ['OS=="win" and win_use_allocator_shim==1', { 242 ['OS=="win" and win_use_allocator_shim==1', {
248 'dependencies': [ 243 'dependencies': [
249 '../base/allocator/allocator.gyp:allocator', 244 '../base/allocator/allocator.gyp:allocator',
250 ], 245 ],
251 }], 246 }],
252 ['enable_webrtc==1', { 247 ['enable_webrtc==1', {
253 'dependencies': [ 248 'dependencies': [
254 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 249 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
255 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers', 250 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
(...skipping 14 matching lines...) Expand all
270 }, { 265 }, {
271 'sources!': [ 266 'sources!': [
272 'renderer/java/java_bridge_channel.cc', 267 'renderer/java/java_bridge_channel.cc',
273 'renderer/java/java_bridge_channel.h', 268 'renderer/java/java_bridge_channel.h',
274 'renderer/java/java_bridge_dispatcher.cc', 269 'renderer/java/java_bridge_dispatcher.cc',
275 'renderer/java/java_bridge_dispatcher.h', 270 'renderer/java/java_bridge_dispatcher.h',
276 ], 271 ],
277 }], 272 }],
278 ], 273 ],
279 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698