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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'variables': { | 9 'variables': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 1933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1944 'manifest_package_name': 'org.chromium.chromoting', | 1944 'manifest_package_name': 'org.chromium.chromoting', |
1945 'native_lib_target': 'libremoting_client_jni', | 1945 'native_lib_target': 'libremoting_client_jni', |
1946 'java_in_dir': 'android/java', | 1946 'java_in_dir': 'android/java', |
1947 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/res' ], | 1947 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/res' ], |
1948 'additional_input_paths': [ | 1948 'additional_input_paths': [ |
1949 '<(PRODUCT_DIR)/obj/remoting/remoting_android_resources.actions_ru
les_copies.stamp', | 1949 '<(PRODUCT_DIR)/obj/remoting/remoting_android_resources.actions_ru
les_copies.stamp', |
1950 ], | 1950 ], |
1951 }, | 1951 }, |
1952 'includes': [ '../build/java_apk.gypi' ], | 1952 'includes': [ '../build/java_apk.gypi' ], |
1953 }, # end of target 'remoting_apk' | 1953 }, # end of target 'remoting_apk' |
| 1954 { |
| 1955 # remoting_apk creates a .jar file as a side effect. Any Java targets |
| 1956 # that need that .jar in their classpath should depend on this target. |
| 1957 'target_name': 'remoting_apk_java', |
| 1958 'type': 'none', |
| 1959 'dependencies': [ |
| 1960 'remoting_apk', |
| 1961 ], |
| 1962 'includes': [ '../build/apk_fake_jar.gypi' ], |
| 1963 }, # end of target 'remoting_apk_java' |
| 1964 { |
| 1965 'target_name': 'remoting_test_apk', |
| 1966 'type': 'none', |
| 1967 'dependencies': [ |
| 1968 '../base/base.gyp:base_java_test_support', |
| 1969 'remoting_apk_java', |
| 1970 ], |
| 1971 'variables': { |
| 1972 'apk_name': 'ChromotingTest', |
| 1973 'java_in_dir': 'android/javatests', |
| 1974 'is_test_apk': 1, |
| 1975 }, |
| 1976 'includes': [ '../build/java_apk.gypi' ], |
| 1977 }, # end of target 'remoting_test_apk' |
1954 ], # end of 'targets' | 1978 ], # end of 'targets' |
1955 }], # 'OS=="android"' | 1979 }], # 'OS=="android"' |
1956 | 1980 |
1957 ['OS=="android" and gtest_target_type=="shared_library"', { | 1981 ['OS=="android" and gtest_target_type=="shared_library"', { |
1958 'targets': [ | 1982 'targets': [ |
1959 { | 1983 { |
1960 'target_name': 'remoting_unittests_apk', | 1984 'target_name': 'remoting_unittests_apk', |
1961 'type': 'none', | 1985 'type': 'none', |
1962 'dependencies': [ | 1986 'dependencies': [ |
1963 'remoting_unittests', | 1987 'remoting_unittests', |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3067 '../base/allocator/allocator.gyp:allocator', | 3091 '../base/allocator/allocator.gyp:allocator', |
3068 ], | 3092 ], |
3069 }, | 3093 }, |
3070 ], | 3094 ], |
3071 ], | 3095 ], |
3072 }], # end of 'toolkit_uses_gtk == 1' | 3096 }], # end of 'toolkit_uses_gtk == 1' |
3073 ], # end of 'conditions' | 3097 ], # end of 'conditions' |
3074 }, # end of target 'remoting_unittests' | 3098 }, # end of target 'remoting_unittests' |
3075 ], # end of targets | 3099 ], # end of targets |
3076 } | 3100 } |
OLD | NEW |