| 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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 997 ], | 997 ], |
| 998 }], # OS=="mac" | 998 }], # OS=="mac" |
| 999 ['OS=="android"', { | 999 ['OS=="android"', { |
| 1000 'targets': [ | 1000 'targets': [ |
| 1001 { | 1001 { |
| 1002 # TODO(jrg): Update this action and other jni generators to only | 1002 # TODO(jrg): Update this action and other jni generators to only |
| 1003 # require specifying the java directory and generate the rest. | 1003 # require specifying the java directory and generate the rest. |
| 1004 'target_name': 'content_shell_jni_headers', | 1004 'target_name': 'content_shell_jni_headers', |
| 1005 'type': 'none', | 1005 'type': 'none', |
| 1006 'sources': [ | 1006 'sources': [ |
| 1007 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', | |
| 1008 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', | 1007 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', |
| 1009 'shell/android/java/src/org/chromium/content_shell/ShellMojoTestUtil
s.java', | 1008 'shell/android/java/src/org/chromium/content_shell/ShellMojoTestUtil
s.java', |
| 1010 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', | 1009 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', |
| 1011 'shell/android/java/src/org/chromium/content_shell/Shell.java', | 1010 'shell/android/java/src/org/chromium/content_shell/Shell.java', |
| 1012 ], | 1011 ], |
| 1013 'variables': { | 1012 'variables': { |
| 1014 'jni_gen_package': 'content/shell', | 1013 'jni_gen_package': 'content/shell', |
| 1015 }, | 1014 }, |
| 1016 'includes': [ '../build/jni_generator.gypi' ], | 1015 'includes': [ '../build/jni_generator.gypi' ], |
| 1017 }, | 1016 }, |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1165 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1167 '--destination_dir', '<(dest_dir)', | 1166 '--destination_dir', '<(dest_dir)', |
| 1168 ], | 1167 ], |
| 1169 }, | 1168 }, |
| 1170 ], | 1169 ], |
| 1171 }, | 1170 }, |
| 1172 ], | 1171 ], |
| 1173 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1172 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1174 ] | 1173 ] |
| 1175 } | 1174 } |
| OLD | NEW |