| 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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 }], | 600 }], |
| 601 ], | 601 ], |
| 602 }, | 602 }, |
| 603 { | 603 { |
| 604 'target_name': 'content_shell_java', | 604 'target_name': 'content_shell_java', |
| 605 'type': 'none', | 605 'type': 'none', |
| 606 'dependencies': [ | 606 'dependencies': [ |
| 607 'content_java', | 607 'content_java', |
| 608 ], | 608 ], |
| 609 'variables': { | 609 'variables': { |
| 610 'package_name': 'content_shell', | |
| 611 'java_in_dir': '../content/shell/android/java', | 610 'java_in_dir': '../content/shell/android/java', |
| 612 'has_java_resources': 1, | 611 'has_java_resources': 1, |
| 613 'R_package': 'org.chromium.content_shell', | 612 'R_package': 'org.chromium.content_shell', |
| 614 'R_package_relpath': 'org/chromium/content_shell', | 613 'R_package_relpath': 'org/chromium/content_shell', |
| 615 }, | 614 }, |
| 616 'includes': [ '../build/java.gypi' ], | 615 'includes': [ '../build/java.gypi' ], |
| 617 }, | 616 }, |
| 618 { | 617 { |
| 619 # content_shell_apk creates a .jar as a side effect. Any java targets | 618 # content_shell_apk creates a .jar as a side effect. Any java targets |
| 620 # that need that .jar in their classpath should depend on this target, | 619 # that need that .jar in their classpath should depend on this target, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 651 'dependencies': [ | 650 'dependencies': [ |
| 652 'content_java', | 651 'content_java', |
| 653 'content_shell_java', | 652 'content_shell_java', |
| 654 'libcontent_shell_content_view', | 653 'libcontent_shell_content_view', |
| 655 '../base/base.gyp:base_java', | 654 '../base/base.gyp:base_java', |
| 656 '../media/media.gyp:media_java', | 655 '../media/media.gyp:media_java', |
| 657 '../net/net.gyp:net_java', | 656 '../net/net.gyp:net_java', |
| 658 '../ui/ui.gyp:ui_java', | 657 '../ui/ui.gyp:ui_java', |
| 659 ], | 658 ], |
| 660 'variables': { | 659 'variables': { |
| 661 'package_name': 'content_shell_apk', | |
| 662 'apk_name': 'ContentShell', | 660 'apk_name': 'ContentShell', |
| 663 'manifest_package_name': 'org.chromium.content_shell_apk', | 661 'manifest_package_name': 'org.chromium.content_shell_apk', |
| 664 'java_in_dir': 'shell/android/shell_apk', | 662 'java_in_dir': 'shell/android/shell_apk', |
| 665 'resource_dir': 'res', | 663 'resource_dir': 'res', |
| 666 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], | 664 'native_libs_paths': ['<(SHARED_LIB_DIR)/libcontent_shell_content_vi
ew.so'], |
| 667 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 665 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
| 668 'asset_location': '<(ant_build_out)/content_shell/assets', | 666 'asset_location': '<(ant_build_out)/content_shell/assets', |
| 669 }, | 667 }, |
| 670 'includes': [ '../build/java_apk.gypi' ], | 668 'includes': [ '../build/java_apk.gypi' ], |
| 671 }, | 669 }, |
| 672 ], | 670 ], |
| 673 }], # OS=="android" | 671 }], # OS=="android" |
| 674 ] | 672 ] |
| 675 } | 673 } |
| OLD | NEW |