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

Side by Side Diff: content/content_shell.gypi

Issue 1143903002: [Android] Refactor the native test wrappers. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 '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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 ], 1003 ],
1004 }], # OS=="mac" 1004 }], # OS=="mac"
1005 ['OS=="android"', { 1005 ['OS=="android"', {
1006 'targets': [ 1006 'targets': [
1007 { 1007 {
1008 # TODO(jrg): Update this action and other jni generators to only 1008 # TODO(jrg): Update this action and other jni generators to only
1009 # require specifying the java directory and generate the rest. 1009 # require specifying the java directory and generate the rest.
1010 'target_name': 'content_shell_jni_headers', 1010 'target_name': 'content_shell_jni_headers',
1011 'type': 'none', 1011 'type': 'none',
1012 'sources': [ 1012 'sources': [
1013 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/ContentBrowserTestsActivity.java',
1014 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt ils.java', 1013 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt ils.java',
1015 'shell/android/java/src/org/chromium/content_shell/ShellMojoTestUtil s.java', 1014 'shell/android/java/src/org/chromium/content_shell/ShellMojoTestUtil s.java',
1016 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ', 1015 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ',
1017 'shell/android/java/src/org/chromium/content_shell/Shell.java', 1016 'shell/android/java/src/org/chromium/content_shell/Shell.java',
1018 ], 1017 ],
1019 'variables': { 1018 'variables': {
1020 'jni_gen_package': 'content/shell', 1019 'jni_gen_package': 'content/shell',
1021 }, 1020 },
1022 'includes': [ '../build/jni_generator.gypi' ], 1021 'includes': [ '../build/jni_generator.gypi' ],
1023 }, 1022 },
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1172 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1174 '--destination_dir', '<(dest_dir)', 1173 '--destination_dir', '<(dest_dir)',
1175 ], 1174 ],
1176 }, 1175 },
1177 ], 1176 ],
1178 }, 1177 },
1179 ], 1178 ],
1180 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1179 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1181 ] 1180 ]
1182 } 1181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698