Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: components/web_restrictions.gypi

Issue 1905103002: 🐮 Add dummy junit targets so that GYP & GN have the same targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot to add java file Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/policy.gypi ('k') | testing/android/junit/DummyTest.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/policy.gypi ('k') | testing/android/junit/DummyTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698