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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 'targets': [ | 265 'targets': [ |
266 { | 266 { |
267 'target_name': 'common_aidl', | 267 'target_name': 'common_aidl', |
268 'type': 'none', | 268 'type': 'none', |
269 'variables': { | 269 'variables': { |
270 'package_name': 'content', | 270 'package_name': 'content', |
271 'aidl_interface_file': 'public/android/java/src/org/chromium/content
/common/common.aidl', | 271 'aidl_interface_file': 'public/android/java/src/org/chromium/content
/common/common.aidl', |
272 }, | 272 }, |
273 'sources': [ | 273 'sources': [ |
274 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssCallback.aidl', | 274 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssCallback.aidl', |
275 'public/android/java/src/org/chromium/content/common/ISandboxedProcess
Service.aidl', | 275 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssService.aidl', |
276 ], | 276 ], |
277 'includes': [ '../build/java_aidl.gypi' ], | 277 'includes': [ '../build/java_aidl.gypi' ], |
278 }, | 278 }, |
279 { | 279 { |
280 'target_name': 'content_java', | 280 'target_name': 'content_java', |
281 'type': 'none', | 281 'type': 'none', |
282 'dependencies': [ | 282 'dependencies': [ |
283 '../base/base.gyp:base', | 283 '../base/base.gyp:base', |
284 '../net/net.gyp:net', | 284 '../net/net.gyp:net', |
285 '../ui/ui.gyp:ui_java', | 285 '../ui/ui.gyp:ui_java', |
(...skipping 21 matching lines...) Expand all Loading... |
307 'type': 'none', | 307 'type': 'none', |
308 'dependencies': [ | 308 'dependencies': [ |
309 'surface_texture_jni_headers', | 309 'surface_texture_jni_headers', |
310 ], | 310 ], |
311 'includes': [ 'content_jni.gypi' ], | 311 'includes': [ 'content_jni.gypi' ], |
312 }, | 312 }, |
313 ], | 313 ], |
314 }], # OS == "android" | 314 }], # OS == "android" |
315 ], | 315 ], |
316 } | 316 } |
OLD | NEW |