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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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': ['../base/base.gyp:base_java'], |
224 'variables': { | 236 'variables': { |
225 'package_name': 'content', | 237 'package_name': 'content', |
226 'java_in_dir': '../content/public/android/java', | 238 'java_in_dir': '../content/public/android/java', |
227 }, | 239 }, |
228 'includes': [ '../build/java.gypi' ], | 240 'includes': [ '../build/java.gypi' ], |
229 }, | 241 }, |
230 { | 242 { |
231 'target_name': 'content_jni_headers', | 243 'target_name': 'content_jni_headers', |
232 'type': 'none', | 244 'type': 'none', |
233 'includes': [ 'content_jni.gypi' ], | 245 'includes': [ 'content_jni.gypi' ], |
234 }, | 246 }, |
235 ], | 247 ], |
236 }], # OS == "android" | 248 }], # OS == "android" |
237 ], | 249 ], |
238 } | 250 } |
OLD | NEW |