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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 '../media/media.gyp:media_java', | 308 '../media/media.gyp:media_java', |
309 '../net/net.gyp:net', | 309 '../net/net.gyp:net', |
310 '../ui/ui.gyp:ui_java', | 310 '../ui/ui.gyp:ui_java', |
311 'common_aidl', | 311 'common_aidl', |
312 'content_common', | 312 'content_common', |
313 'page_transition_types_java', | 313 'page_transition_types_java', |
314 'result_codes_java', | 314 'result_codes_java', |
315 ], | 315 ], |
316 'variables': { | 316 'variables': { |
317 'java_in_dir': '../content/public/android/java', | 317 'java_in_dir': '../content/public/android/java', |
| 318 'jar_excluded_classes': [ '*/NativeLibraries.class' ], |
318 'has_java_resources': 1, | 319 'has_java_resources': 1, |
319 'R_package': 'org.chromium.content', | 320 'R_package': 'org.chromium.content', |
320 'R_package_relpath': 'org/chromium/content', | 321 'R_package_relpath': 'org/chromium/content', |
321 'java_strings_grd': 'android_content_strings.grd', | 322 'java_strings_grd': 'android_content_strings.grd', |
322 }, | 323 }, |
323 'conditions': [ | 324 'conditions': [ |
324 ['android_webview_build == 0', { | 325 ['android_webview_build == 0', { |
325 'dependencies': [ | 326 'dependencies': [ |
326 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 327 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
327 '../third_party/guava/guava.gyp:guava_javalib', | 328 '../third_party/guava/guava.gyp:guava_javalib', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 'include_dirs': [ | 395 'include_dirs': [ |
395 '<(SHARED_INTERMEDIATE_DIR)/content', | 396 '<(SHARED_INTERMEDIATE_DIR)/content', |
396 ], | 397 ], |
397 }, | 398 }, |
398 'includes': [ 'content_jni.gypi' ], | 399 'includes': [ 'content_jni.gypi' ], |
399 }, | 400 }, |
400 ], | 401 ], |
401 }], # OS == "android" | 402 }], # OS == "android" |
402 ], | 403 ], |
403 } | 404 } |
OLD | NEW |