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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssCallback.aidl', | 283 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssCallback.aidl', |
284 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssService.aidl', | 284 'public/android/java/src/org/chromium/content/common/ISandboxedProce
ssService.aidl', |
285 ], | 285 ], |
286 'includes': [ '../build/java_aidl.gypi' ], | 286 'includes': [ '../build/java_aidl.gypi' ], |
287 }, | 287 }, |
288 { | 288 { |
289 'target_name': 'content_java', | 289 'target_name': 'content_java', |
290 'type': 'none', | 290 'type': 'none', |
291 'dependencies': [ | 291 'dependencies': [ |
292 '../base/base.gyp:base', | 292 '../base/base.gyp:base', |
| 293 '../media/media.gyp:media_java', |
293 '../net/net.gyp:net', | 294 '../net/net.gyp:net', |
294 '../ui/ui.gyp:ui_java', | 295 '../ui/ui.gyp:ui_java', |
295 'common_aidl', | 296 'common_aidl', |
296 'content_common', | 297 'content_common', |
297 'page_transition_types_java', | 298 'page_transition_types_java', |
298 ], | 299 ], |
299 'variables': { | 300 'variables': { |
300 'package_name': 'content', | 301 'package_name': 'content', |
301 'java_in_dir': '../content/public/android/java', | 302 'java_in_dir': '../content/public/android/java', |
302 'has_java_resources': 1, | 303 'has_java_resources': 1, |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 'include_dirs': [ | 370 'include_dirs': [ |
370 '<(SHARED_INTERMEDIATE_DIR)/content', | 371 '<(SHARED_INTERMEDIATE_DIR)/content', |
371 ], | 372 ], |
372 }, | 373 }, |
373 'includes': [ 'content_jni.gypi' ], | 374 'includes': [ 'content_jni.gypi' ], |
374 }, | 375 }, |
375 ], | 376 ], |
376 }], # OS == "android" | 377 }], # OS == "android" |
377 ], | 378 ], |
378 } | 379 } |
OLD | NEW |