| 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 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['OS == "android"', { | 7 ['OS == "android"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # GN: //components/web_restrictions:web_restrictions_java | 10 # GN: //components/web_restrictions:web_restrictions_java |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'target_name': 'web_restrictions_test_support', | 89 'target_name': 'web_restrictions_test_support', |
| 90 'type': 'static_library', | 90 'type': 'static_library', |
| 91 'dependencies': [ | 91 'dependencies': [ |
| 92 '<(DEPTH)/base/base.gyp:base', | 92 '<(DEPTH)/base/base.gyp:base', |
| 93 'web_restrictions_test_support_jni_headers', | 93 'web_restrictions_test_support_jni_headers', |
| 94 ], | 94 ], |
| 95 'sources': [ | 95 'sources': [ |
| 96 'web_restrictions/browser/mock_web_restrictions_client.cc', | 96 'web_restrictions/browser/mock_web_restrictions_client.cc', |
| 97 'web_restrictions/browser/mock_web_restrictions_client.h', | 97 'web_restrictions/browser/mock_web_restrictions_client.h', |
| 98 ], | 98 ], |
| 99 } | 99 }, |
| 100 | 100 { |
| 101 'target_name': 'components_web_restrictions_junit_tests', |
| 102 'type': 'none', |
| 103 'dependencies': [ |
| 104 '../testing/android/junit/junit_test.gyp:junit_test_support', |
| 105 ], |
| 106 'variables': { |
| 107 'main_class': 'org.chromium.testing.local.JunitTestMain', |
| 108 'src_paths': [ |
| 109 '../testing/android/junit/DummyTest.java', |
| 110 ], |
| 111 'wrapper_script_name': 'helper/<(_target_name)', |
| 112 }, |
| 113 'includes': [ '../build/host_jar.gypi' ], |
| 114 }, |
| 101 ], | 115 ], |
| 102 }]] | 116 }]] |
| 103 } | 117 } |
| OLD | NEW |