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

Side by Side Diff: content/content.gyp

Issue 12321131: Renamed Sandboxed process to Child process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated findbugs_known_bugs.txt Created 7 years, 9 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
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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 }], 289 }],
290 ['OS == "android"', { 290 ['OS == "android"', {
291 'targets': [ 291 'targets': [
292 { 292 {
293 'target_name': 'common_aidl', 293 'target_name': 'common_aidl',
294 'type': 'none', 294 'type': 'none',
295 'variables': { 295 'variables': {
296 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl', 296 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl',
297 }, 297 },
298 'sources': [ 298 'sources': [
299 'public/android/java/src/org/chromium/content/common/ISandboxedProce ssCallback.aidl', 299 'public/android/java/src/org/chromium/content/common/IChildProcessCa llback.aidl',
300 'public/android/java/src/org/chromium/content/common/ISandboxedProce ssService.aidl', 300 'public/android/java/src/org/chromium/content/common/IChildProcessSe rvice.aidl',
301 ], 301 ],
302 'includes': [ '../build/java_aidl.gypi' ], 302 'includes': [ '../build/java_aidl.gypi' ],
303 }, 303 },
304 { 304 {
305 'target_name': 'content_java', 305 'target_name': 'content_java',
306 'type': 'none', 306 'type': 'none',
307 'dependencies': [ 307 'dependencies': [
308 '../base/base.gyp:base', 308 '../base/base.gyp:base',
309 '../media/media.gyp:media_java', 309 '../media/media.gyp:media_java',
310 '../net/net.gyp:net', 310 '../net/net.gyp:net',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 'include_dirs': [ 398 'include_dirs': [
399 '<(SHARED_INTERMEDIATE_DIR)/content', 399 '<(SHARED_INTERMEDIATE_DIR)/content',
400 ], 400 ],
401 }, 401 },
402 'includes': [ 'content_jni.gypi' ], 402 'includes': [ 'content_jni.gypi' ],
403 }, 403 },
404 ], 404 ],
405 }], # OS == "android" 405 }], # OS == "android"
406 ], 406 ],
407 } 407 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698