| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 'content_common', | 871 'content_common', |
| 872 'content_java', | 872 'content_java', |
| 873 ], | 873 ], |
| 874 'variables': { | 874 'variables': { |
| 875 'package_name': 'content_javatests', | 875 'package_name': 'content_javatests', |
| 876 'java_in_dir': '../content/public/android/javatests', | 876 'java_in_dir': '../content/public/android/javatests', |
| 877 }, | 877 }, |
| 878 'includes': [ '../build/java.gypi' ], | 878 'includes': [ '../build/java.gypi' ], |
| 879 }, | 879 }, |
| 880 { | 880 { |
| 881 'target_name': 'content_java_test_support', |
| 882 'type': 'none', |
| 883 'dependencies': [ |
| 884 '../base/base.gyp:base', |
| 885 '../base/base.gyp:base_java_test_support', |
| 886 'content_common', |
| 887 'content_java', |
| 888 ], |
| 889 'variables': { |
| 890 'package_name': 'content_java_test_support', |
| 891 'java_in_dir': '../content/public/test/android/javatests', |
| 892 }, |
| 893 'includes': [ '../build/java.gypi' ], |
| 894 }, |
| 895 { |
| 881 'target_name': 'content_shell_test_apk', | 896 'target_name': 'content_shell_test_apk', |
| 882 'type': 'none', | 897 'type': 'none', |
| 883 'dependencies': [ | 898 'dependencies': [ |
| 884 'content_java', | 899 'content_java', |
| 885 'content_javatests', | 900 'content_javatests', |
| 886 'content_shell_apk', | 901 'content_shell_apk', |
| 887 '../base/base.gyp:base_java', | 902 '../base/base.gyp:base_java', |
| 888 '../base/base.gyp:base_java_test_support', | 903 '../base/base.gyp:base_java_test_support', |
| 889 '../media/media.gyp:media_java', | 904 '../media/media.gyp:media_java', |
| 890 '../media/media.gyp:media_test_support', | 905 '../media/media.gyp:media_test_support', |
| 891 '../net/net.gyp:net_java', | 906 '../net/net.gyp:net_java', |
| 892 '../net/net.gyp:net_javatests', | 907 '../net/net.gyp:net_javatests', |
| 893 '../tools/android/forwarder/forwarder.gyp:forwarder', | 908 '../tools/android/forwarder/forwarder.gyp:forwarder', |
| 894 ], | 909 ], |
| 895 'variables': { | 910 'variables': { |
| 896 'package_name': 'content_shell_test', | 911 'package_name': 'content_shell_test', |
| 897 'apk_name': 'ContentShellTest', | 912 'apk_name': 'ContentShellTest', |
| 898 'java_in_dir': 'shell/android/javatests', | 913 'java_in_dir': 'shell/android/javatests', |
| 899 'resource_dir': '../res', | 914 'resource_dir': '../res', |
| 900 }, | 915 }, |
| 901 'includes': [ '../build/java_apk.gypi' ], | 916 'includes': [ '../build/java_apk.gypi' ], |
| 902 }, | 917 }, |
| 903 ], | 918 ], |
| 904 }], | 919 }], |
| 905 ], | 920 ], |
| 906 } | 921 } |
| OLD | NEW |