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 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 # Skia is necessary to ensure the dependencies needed by | 601 # Skia is necessary to ensure the dependencies needed by |
602 # WebContents are included. | 602 # WebContents are included. |
603 '../skia/skia.gyp:skia', | 603 '../skia/skia.gyp:skia', |
604 '<(DEPTH)/media/media.gyp:player_android', | 604 '<(DEPTH)/media/media.gyp:player_android', |
605 ], | 605 ], |
606 'sources': [ | 606 'sources': [ |
607 'shell/android/shell_library_loader.cc', | 607 'shell/android/shell_library_loader.cc', |
608 'shell/android/shell_library_loader.h', | 608 'shell/android/shell_library_loader.h', |
609 ], | 609 ], |
610 'conditions': [ | 610 'conditions': [ |
611 ['android_build_type==1', { | 611 ['android_webview_build==1', { |
612 'ldflags': [ | 612 'ldflags': [ |
613 '-lgabi++', # For rtti | 613 '-lgabi++', # For rtti |
614 ], | 614 ], |
615 }], | 615 }], |
616 ], | 616 ], |
617 }, | 617 }, |
618 { | 618 { |
619 'target_name': 'content_shell_java', | 619 'target_name': 'content_shell_java', |
620 'type': 'none', | 620 'type': 'none', |
621 'dependencies': [ | 621 'dependencies': [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], | 679 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], |
680 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 680 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
681 'asset_location': '<(ant_build_out)/content_shell/assets', | 681 'asset_location': '<(ant_build_out)/content_shell/assets', |
682 }, | 682 }, |
683 'includes': [ '../build/java_apk.gypi' ], | 683 'includes': [ '../build/java_apk.gypi' ], |
684 }, | 684 }, |
685 ], | 685 ], |
686 }], # OS=="android" | 686 }], # OS=="android" |
687 ] | 687 ] |
688 } | 688 } |
OLD | NEW |