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

Side by Side Diff: content/content.gyp

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/common/android/surface_texture_peer.cc ('k') | content/content_app.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 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 {'target_name': 'content_worker', 211 {'target_name': 'content_worker',
212 'type': 'none', 212 'type': 'none',
213 'dependencies': ['content'], 213 'dependencies': ['content'],
214 }, 214 },
215 ], 215 ],
216 }, 216 },
217 ], 217 ],
218 ['OS == "android"', { 218 ['OS == "android"', {
219 'targets': [ 219 'targets': [
220 { 220 {
221 'target_name': 'common_aidl',
222 'type': 'none',
223 'variables': {
224 'aidl_interface_file': '../content/public/android/java/org/chromium/c ontent/common/common.aidl',
225 },
226 'sources': [
227 '../content/public/android/java/org/chromium/content/common/ISandboxe dProcessCallback.aidl',
228 '../content/public/android/java/org/chromium/content/common/ISandboxe dProcessService.aidl',
229 ],
230 'includes': [ '../build/java_aidl.gypi' ],
231 },
232 {
221 'target_name': 'content_java', 233 'target_name': 'content_java',
222 'type': 'none', 234 'type': 'none',
223 'dependencies': ['../base/base.gyp:base_java'], 235 'dependencies': [
236 '../base/base.gyp:base_java',
237 'content_common',
238 ],
224 'variables': { 239 'variables': {
225 'package_name': 'content', 240 'package_name': 'content',
226 'java_in_dir': '../content/public/android/java', 241 'java_in_dir': '../content/public/android/java',
227 }, 242 },
228 'includes': [ '../build/java.gypi' ], 243 'includes': [ '../build/java.gypi' ],
229 }, 244 },
230 { 245 {
231 'target_name': 'content_jni_headers', 246 'target_name': 'content_jni_headers',
232 'type': 'none', 247 'type': 'none',
233 'includes': [ 'content_jni.gypi' ], 248 'includes': [ 'content_jni.gypi' ],
234 }, 249 },
235 ], 250 ],
236 }], # OS == "android" 251 }], # OS == "android"
237 ], 252 ],
238 } 253 }
OLDNEW
« no previous file with comments | « content/common/android/surface_texture_peer.cc ('k') | content/content_app.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698