| OLD | NEW |
| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 }], | 288 }], |
| 289 ['OS == "android"', { | 289 ['OS == "android"', { |
| 290 'targets': [ | 290 'targets': [ |
| 291 { | 291 { |
| 292 'target_name': 'common_aidl', | 292 'target_name': 'common_aidl', |
| 293 'type': 'none', | 293 'type': 'none', |
| 294 'variables': { | 294 'variables': { |
| 295 'aidl_interface_file': 'public/android/java/src/org/chromium/content
/common/common.aidl', | 295 'aidl_interface_file': 'public/android/java/src/org/chromium/content
/common/common.aidl', |
| 296 }, | 296 }, |
| 297 'sources': [ | 297 'sources': [ |
| 298 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssCallback.aidl', | 298 'public/android/java/src/org/chromium/content/common/IChildProcessCa
llback.aidl', |
| 299 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssService.aidl', | 299 'public/android/java/src/org/chromium/content/common/IChildProcessSe
rvice.aidl', |
| 300 ], | 300 ], |
| 301 'includes': [ '../build/java_aidl.gypi' ], | 301 'includes': [ '../build/java_aidl.gypi' ], |
| 302 }, | 302 }, |
| 303 { | 303 { |
| 304 'target_name': 'content_java', | 304 'target_name': 'content_java', |
| 305 'type': 'none', | 305 'type': 'none', |
| 306 'dependencies': [ | 306 'dependencies': [ |
| 307 '../base/base.gyp:base', | 307 '../base/base.gyp:base', |
| 308 '../media/media.gyp:media_java', | 308 '../media/media.gyp:media_java', |
| 309 '../net/net.gyp:net', | 309 '../net/net.gyp:net', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 'include_dirs': [ | 394 'include_dirs': [ |
| 395 '<(SHARED_INTERMEDIATE_DIR)/content', | 395 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 396 ], | 396 ], |
| 397 }, | 397 }, |
| 398 'includes': [ 'content_jni.gypi' ], | 398 'includes': [ 'content_jni.gypi' ], |
| 399 }, | 399 }, |
| 400 ], | 400 ], |
| 401 }], # OS == "android" | 401 }], # OS == "android" |
| 402 ], | 402 ], |
| 403 } | 403 } |
| OLD | NEW |