| 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'android_webview_apk', | 7 'target_name': 'android_webview_apk', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'libwebviewchromium', | 10 'libwebviewchromium', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'type': '<(gtest_target_type)', | 67 'type': '<(gtest_target_type)', |
| 68 'dependencies': [ | 68 'dependencies': [ |
| 69 '../base/base.gyp:test_support_base', | 69 '../base/base.gyp:test_support_base', |
| 70 '../content/content_shell_and_tests.gyp:test_support_content', | 70 '../content/content_shell_and_tests.gyp:test_support_content', |
| 71 '../net/net.gyp:net_test_support', | 71 '../net/net.gyp:net_test_support', |
| 72 '../testing/android/native_test.gyp:native_test_native_code', | 72 '../testing/android/native_test.gyp:native_test_native_code', |
| 73 '../testing/gmock.gyp:gmock', | 73 '../testing/gmock.gyp:gmock', |
| 74 '../testing/gtest.gyp:gtest', | 74 '../testing/gtest.gyp:gtest', |
| 75 '../ui/ui.gyp:ui_base_jni_headers', | 75 '../ui/ui.gyp:ui_base_jni_headers', |
| 76 'android_webview_common', | 76 'android_webview_common', |
| 77 'android_webview_unittests_jni', |
| 77 ], | 78 ], |
| 78 'include_dirs': [ | 79 'include_dirs': [ |
| 79 '..', | 80 '..', |
| 80 '../skia/config', | 81 '../skia/config', |
| 81 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', | 82 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', |
| 82 ], | 83 ], |
| 83 'sources': [ | 84 'sources': [ |
| 84 'browser/aw_form_database_service_unittest.cc', | 85 'browser/aw_form_database_service_unittest.cc', |
| 85 'browser/net/android_stream_reader_url_request_job_unittest.cc', | 86 'browser/net/android_stream_reader_url_request_job_unittest.cc', |
| 86 'browser/net/input_stream_reader_unittest.cc', | 87 'browser/net/input_stream_reader_unittest.cc', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 112 'jni_gen_package': 'android_webview_unittests', | 113 'jni_gen_package': 'android_webview_unittests', |
| 113 }, | 114 }, |
| 114 'includes': [ '../build/jni_generator.gypi' ], | 115 'includes': [ '../build/jni_generator.gypi' ], |
| 115 }, | 116 }, |
| 116 { | 117 { |
| 117 'target_name': 'android_webview_unittests_apk', | 118 'target_name': 'android_webview_unittests_apk', |
| 118 'type': 'none', | 119 'type': 'none', |
| 119 'dependencies': [ | 120 'dependencies': [ |
| 120 'android_webview_unittest_java', | 121 'android_webview_unittest_java', |
| 121 'android_webview_unittests', | 122 'android_webview_unittests', |
| 122 'android_webview_unittests_jni', | |
| 123 ], | 123 ], |
| 124 'variables': { | 124 'variables': { |
| 125 'test_suite_name': 'android_webview_unittests', | 125 'test_suite_name': 'android_webview_unittests', |
| 126 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', | 126 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', |
| 127 }, | 127 }, |
| 128 'includes': [ '../build/apk_test.gypi' ], | 128 'includes': [ '../build/apk_test.gypi' ], |
| 129 }, | 129 }, |
| 130 ], | 130 ], |
| 131 } | 131 } |
| OLD | NEW |