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

Side by Side Diff: content/content_shell.gypi

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

Powered by Google App Engine
This is Rietveld 408576698