| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 'top_controls_state_java', | 411 'top_controls_state_java', |
| 412 'content_native_libraries_gen', | 412 'content_native_libraries_gen', |
| 413 ], | 413 ], |
| 414 'variables': { | 414 'variables': { |
| 415 'java_in_dir': '../content/public/android/java', | 415 'java_in_dir': '../content/public/android/java', |
| 416 'jar_excluded_classes': [ '*/NativeLibraries.class' ], | 416 'jar_excluded_classes': [ '*/NativeLibraries.class' ], |
| 417 'has_java_resources': 1, | 417 'has_java_resources': 1, |
| 418 'R_package': 'org.chromium.content', | 418 'R_package': 'org.chromium.content', |
| 419 'R_package_relpath': 'org/chromium/content', | 419 'R_package_relpath': 'org/chromium/content', |
| 420 'java_strings_grd': 'android_content_strings.grd', | 420 'java_strings_grd': 'android_content_strings.grd', |
| 421 'emma_should_instrument': 1, |
| 421 }, | 422 }, |
| 422 'conditions': [ | 423 'conditions': [ |
| 423 ['android_webview_build == 0', { | 424 ['android_webview_build == 0', { |
| 424 'dependencies': [ | 425 'dependencies': [ |
| 425 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 426 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
| 426 '../third_party/guava/guava.gyp:guava_javalib', | 427 '../third_party/guava/guava.gyp:guava_javalib', |
| 427 ], | 428 ], |
| 428 }], | 429 }], |
| 429 ], | 430 ], |
| 430 'includes': [ '../build/java.gypi' ], | 431 'includes': [ '../build/java.gypi' ], |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 'include_dirs': [ | 498 'include_dirs': [ |
| 498 '<(SHARED_INTERMEDIATE_DIR)/content', | 499 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 499 ], | 500 ], |
| 500 }, | 501 }, |
| 501 'includes': [ 'content_jni.gypi' ], | 502 'includes': [ 'content_jni.gypi' ], |
| 502 }, | 503 }, |
| 503 ], | 504 ], |
| 504 }], # OS == "android" | 505 }], # OS == "android" |
| 505 ], | 506 ], |
| 506 } | 507 } |
| OLD | NEW |