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 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
10 }, | 10 }, |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 'top_controls_state_java', | 395 'top_controls_state_java', |
396 'content_native_libraries_gen', | 396 'content_native_libraries_gen', |
397 ], | 397 ], |
398 'variables': { | 398 'variables': { |
399 'java_in_dir': '../content/public/android/java', | 399 'java_in_dir': '../content/public/android/java', |
400 'jar_excluded_classes': [ '*/NativeLibraries.class' ], | 400 'jar_excluded_classes': [ '*/NativeLibraries.class' ], |
401 'has_java_resources': 1, | 401 'has_java_resources': 1, |
402 'R_package': 'org.chromium.content', | 402 'R_package': 'org.chromium.content', |
403 'R_package_relpath': 'org/chromium/content', | 403 'R_package_relpath': 'org/chromium/content', |
404 'java_strings_grd': 'android_content_strings.grd', | 404 'java_strings_grd': 'android_content_strings.grd', |
| 405 'emma_instrument': '<(coverage)', |
405 }, | 406 }, |
406 'conditions': [ | 407 'conditions': [ |
407 ['android_webview_build == 0', { | 408 ['android_webview_build == 0', { |
408 'dependencies': [ | 409 'dependencies': [ |
409 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 410 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
410 '../third_party/guava/guava.gyp:guava_javalib', | 411 '../third_party/guava/guava.gyp:guava_javalib', |
411 ], | 412 ], |
412 }], | 413 }], |
413 ], | 414 ], |
414 'includes': [ '../build/java.gypi' ], | 415 'includes': [ '../build/java.gypi' ], |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 'include_dirs': [ | 482 'include_dirs': [ |
482 '<(SHARED_INTERMEDIATE_DIR)/content', | 483 '<(SHARED_INTERMEDIATE_DIR)/content', |
483 ], | 484 ], |
484 }, | 485 }, |
485 'includes': [ 'content_jni.gypi' ], | 486 'includes': [ 'content_jni.gypi' ], |
486 }, | 487 }, |
487 ], | 488 ], |
488 }], # OS == "android" | 489 }], # OS == "android" |
489 ], | 490 ], |
490 } | 491 } |
OLD | NEW |