| 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 'dependencies': [ | 487 'dependencies': [ |
| 488 'java_set_jni_headers', | 488 'java_set_jni_headers', |
| 489 ], | 489 ], |
| 490 'direct_dependent_settings': { | 490 'direct_dependent_settings': { |
| 491 'include_dirs': [ | 491 'include_dirs': [ |
| 492 '<(SHARED_INTERMEDIATE_DIR)/content', | 492 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 493 ], | 493 ], |
| 494 }, | 494 }, |
| 495 'includes': [ 'content_jni.gypi' ], | 495 'includes': [ 'content_jni.gypi' ], |
| 496 }, | 496 }, |
| 497 { |
| 498 'target_name': 'chrome_android_linker', |
| 499 'type': 'shared_library', |
| 500 'sources': [ |
| 501 'common/android/linker/chrome_linker_jni.cc', |
| 502 ], |
| 503 'includes': [ '../third_party/crazy_linker/crazy_linker.gypi' ], |
| 504 }, |
| 505 |
| 497 ], | 506 ], |
| 498 }], # OS == "android" | 507 }], # OS == "android" |
| 499 ], | 508 ], |
| 500 } | 509 } |
| OLD | NEW |