| 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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 }], # OS=="mac" | 646 }], # OS=="mac" |
| 647 ['OS=="android"', { | 647 ['OS=="android"', { |
| 648 'targets': [ | 648 'targets': [ |
| 649 { | 649 { |
| 650 # TODO(jrg): Update this action and other jni generators to only | 650 # TODO(jrg): Update this action and other jni generators to only |
| 651 # require specifying the java directory and generate the rest. | 651 # require specifying the java directory and generate the rest. |
| 652 'target_name': 'content_shell_jni_headers', | 652 'target_name': 'content_shell_jni_headers', |
| 653 'type': 'none', | 653 'type': 'none', |
| 654 'sources': [ | 654 'sources': [ |
| 655 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', | 655 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', |
| 656 'shell/android/linker_test_apk/src/org/chromium/content_linker_test_
apk/LinkerTests.java', |
| 656 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', | 657 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', |
| 657 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', | 658 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', |
| 658 'shell/android/java/src/org/chromium/content_shell/Shell.java', | 659 'shell/android/java/src/org/chromium/content_shell/Shell.java', |
| 659 ], | 660 ], |
| 660 'direct_dependent_settings': { | 661 'direct_dependent_settings': { |
| 661 'include_dirs': [ | 662 'include_dirs': [ |
| 662 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 663 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
| 663 ], | 664 ], |
| 664 }, | 665 }, |
| 665 'variables': { | 666 'variables': { |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 782 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 782 '--destination_dir', '<(dest_dir)', | 783 '--destination_dir', '<(dest_dir)', |
| 783 ], | 784 ], |
| 784 }, | 785 }, |
| 785 ], | 786 ], |
| 786 }, | 787 }, |
| 787 ], | 788 ], |
| 788 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 789 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 789 ] | 790 ] |
| 790 } | 791 } |
| OLD | NEW |