| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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_shell_apk', | 7 'target_name': 'android_webview_shell_apk', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'dependencies': [ |
| 10 '../base/base.gyp:base_java_test_support', |
| 11 ], |
| 9 'variables': { | 12 'variables': { |
| 10 'apk_name': 'AndroidWebViewShell', | 13 'apk_name': 'AndroidWebViewShell', |
| 11 'java_in_dir': 'tools/WebViewShell', | 14 'java_in_dir': 'tools/WebViewShell', |
| 12 'resource_dir': 'tools/WebViewShell/res', | 15 'resource_dir': 'tools/WebViewShell/res', |
| 16 'is_test_apk': 1, |
| 17 'test_type': 'instrumentation', |
| 18 'isolate_file': 'android_webview_shell_test_apk.isolate', |
| 13 }, | 19 }, |
| 14 'includes': [ '../build/java_apk.gypi' ], | 20 'includes': [ |
| 21 '../build/java_apk.gypi', |
| 22 '../build/android/test_runner.gypi', |
| 23 ], |
| 15 }, | 24 }, |
| 16 ], | 25 ], |
| 17 } | 26 } |
| OLD | NEW |