Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: content/content.gyp

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Marcus' nits. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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': 'content_android_linker',
499 'type': 'shared_library',
500 'conditions': [
501 ['android_webview_build == 0', {
502 # Avoid breaking the webview build because it doesn't have
503 # <(android_ndk_root)/crazy_linker.gyp. Note that it never uses
504 # the linker anyway.
505 'sources': [
506 'common/android/linker/linker_jni.cc',
507 ],
508 'dependencies': [
509 '<(android_ndk_root)/crazy_linker.gyp:crazy_linker',
510 ],
511 }],
512 ],
513 },
514
497 ], 515 ],
498 }], # OS == "android" 516 }], # OS == "android"
499 ], 517 ],
500 } 518 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698