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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'java_in_dir': '../android_webview/javatests', | 60 'java_in_dir': '../android_webview/javatests', |
61 'is_test_apk': 1, | 61 'is_test_apk': 1, |
62 }, | 62 }, |
63 'includes': [ '../build/java_apk.gypi' ], | 63 'includes': [ '../build/java_apk.gypi' ], |
64 }, | 64 }, |
65 { | 65 { |
66 'target_name': 'android_webview_unittests', | 66 'target_name': 'android_webview_unittests', |
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.gyp:test_support_content', |
70 '../net/net.gyp:net_test_support', | 71 '../net/net.gyp:net_test_support', |
71 '../testing/android/native_test.gyp:native_test_native_code', | 72 '../testing/android/native_test.gyp:native_test_native_code', |
72 '../testing/gmock.gyp:gmock', | 73 '../testing/gmock.gyp:gmock', |
73 '../testing/gtest.gyp:gtest', | 74 '../testing/gtest.gyp:gtest', |
| 75 '../ui/ui.gyp:ui_jni_headers', |
74 'android_webview_common', | 76 'android_webview_common', |
75 ], | 77 ], |
76 'include_dirs': [ | 78 'include_dirs': [ |
77 '..', | 79 '..', |
78 '../skia/config', | 80 '../skia/config', |
79 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', | 81 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', |
80 ], | 82 ], |
81 'sources': [ | 83 'sources': [ |
| 84 'browser/aw_form_database_service_unittest.cc', |
82 'browser/net/android_stream_reader_url_request_job_unittest.cc', | 85 'browser/net/android_stream_reader_url_request_job_unittest.cc', |
83 'browser/net/input_stream_reader_unittest.cc', | 86 'browser/net/input_stream_reader_unittest.cc', |
84 'lib/main/webview_tests.cc', | 87 'lib/main/webview_tests.cc', |
85 'native/input_stream_unittest.cc', | 88 'native/input_stream_unittest.cc', |
86 'native/state_serializer_unittests.cc', | 89 'native/state_serializer_unittests.cc', |
87 ], | 90 ], |
88 }, | 91 }, |
89 { | 92 { |
90 'target_name': 'android_webview_unittest_java', | 93 'target_name': 'android_webview_unittest_java', |
91 'type': 'none', | 94 'type': 'none', |
(...skipping 27 matching lines...) Expand all Loading... |
119 'android_webview_unittests_jni', | 122 'android_webview_unittests_jni', |
120 ], | 123 ], |
121 'variables': { | 124 'variables': { |
122 'test_suite_name': 'android_webview_unittests', | 125 'test_suite_name': 'android_webview_unittests', |
123 '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)', |
124 }, | 127 }, |
125 'includes': [ '../build/apk_test.gypi' ], | 128 'includes': [ '../build/apk_test.gypi' ], |
126 }, | 129 }, |
127 ], | 130 ], |
128 } | 131 } |
OLD | NEW |