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

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: Trivial rebase. 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 'include_dirs': [
512 # This is necessary to include base/android/sys_utils_constants. h
jochen (gone - plz use gerrit) 2013/10/09 12:08:23 shouldn't you depend on the target that has this h
digit1 2013/10/09 13:33:49 Actually no, it's a very special case: the header
jochen (gone - plz use gerrit) 2013/10/10 11:39:29 I'd either put this into a gyp variable, or introd
digit1 2013/10/10 12:21:41 Ok, I have added build/android/low_memory_device.g
513 '..',
514 ],
515 }],
516 ],
517 },
518
497 ], 519 ],
498 }], # OS == "android" 520 }], # OS == "android"
499 ], 521 ],
500 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698