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

Side by Side Diff: content/content_shell.gypi

Issue 17076008: content_shell: Move BrowserTestSystemMessageHandler and use it in layout tests for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 ], 610 ],
611 }], # OS=="mac" 611 }], # OS=="mac"
612 ['OS=="android"', { 612 ['OS=="android"', {
613 'targets': [ 613 'targets': [
614 { 614 {
615 # TODO(jrg): Update this action and other jni generators to only 615 # TODO(jrg): Update this action and other jni generators to only
616 # require specifying the java directory and generate the rest. 616 # require specifying the java directory and generate the rest.
617 'target_name': 'content_shell_jni_headers', 617 'target_name': 'content_shell_jni_headers',
618 'type': 'none', 618 'type': 'none',
619 'sources': [ 619 'sources': [
620 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/BrowserTestSystemMessageHandler.java',
621 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/ContentBrowserTestsActivity.java', 620 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/ContentBrowserTestsActivity.java',
622 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ', 621 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ',
623 'shell/android/java/src/org/chromium/content_shell/Shell.java', 622 'shell/android/java/src/org/chromium/content_shell/Shell.java',
624 ], 623 ],
625 'direct_dependent_settings': { 624 'direct_dependent_settings': {
626 'include_dirs': [ 625 'include_dirs': [
627 '<(SHARED_INTERMEDIATE_DIR)/content/shell', 626 '<(SHARED_INTERMEDIATE_DIR)/content/shell',
628 ], 627 ],
629 }, 628 },
630 'variables': { 629 'variables': {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 'dependencies': [ 680 'dependencies': [
682 'content_shell_apk', 681 'content_shell_apk',
683 ], 682 ],
684 'includes': [ '../build/apk_fake_jar.gypi' ], 683 'includes': [ '../build/apk_fake_jar.gypi' ],
685 }, 684 },
686 { 685 {
687 'target_name': 'content_shell_apk', 686 'target_name': 'content_shell_apk',
688 'type': 'none', 687 'type': 'none',
689 'dependencies': [ 688 'dependencies': [
690 'content_java', 689 'content_java',
690 'content_java_test_support',
691 'content_shell_java', 691 'content_shell_java',
692 'libcontent_shell_content_view', 692 'libcontent_shell_content_view',
693 '../base/base.gyp:base_java', 693 '../base/base.gyp:base_java',
694 '../media/media.gyp:media_java', 694 '../media/media.gyp:media_java',
695 '../net/net.gyp:net_java', 695 '../net/net.gyp:net_java',
696 '../ui/ui.gyp:ui_java', 696 '../ui/ui.gyp:ui_java',
697 ], 697 ],
698 'variables': { 698 'variables': {
699 'apk_name': 'ContentShell', 699 'apk_name': 'ContentShell',
700 'manifest_package_name': 'org.chromium.content_shell_apk', 700 'manifest_package_name': 'org.chromium.content_shell_apk',
701 'java_in_dir': 'shell/android/shell_apk', 701 'java_in_dir': 'shell/android/shell_apk',
702 'resource_dir': 'shell/android/shell_apk/res', 702 'resource_dir': 'shell/android/shell_apk/res',
703 'native_lib_target': 'libcontent_shell_content_view', 703 'native_lib_target': 'libcontent_shell_content_view',
704 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 704 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
705 'asset_location': '<(ant_build_out)/content_shell/assets', 705 'asset_location': '<(ant_build_out)/content_shell/assets',
706 }, 706 },
707 'includes': [ '../build/java_apk.gypi' ], 707 'includes': [ '../build/java_apk.gypi' ],
708 }, 708 },
709 ], 709 ],
710 }], # OS=="android" 710 }], # OS=="android"
711 ] 711 ]
712 } 712 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698