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

Side by Side Diff: components/navigation_interception.gypi

Issue 2146753002: Android: Remove unneeded RegisterNatives() calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Android: Don't require RegisterNatives if there are none Created 4 years, 4 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 # GN version: //components/navigation_interception 9 # GN version: //components/navigation_interception
10 'target_name': 'navigation_interception', 10 'target_name': 'navigation_interception',
(...skipping 17 matching lines...) Expand all
28 'navigation_interception/navigation_params.cc', 28 'navigation_interception/navigation_params.cc',
29 'navigation_interception/navigation_params.h', 29 'navigation_interception/navigation_params.h',
30 ], 30 ],
31 'conditions': [ 31 'conditions': [
32 ['OS=="android"', { 32 ['OS=="android"', {
33 'dependencies': [ 33 'dependencies': [
34 'navigation_interception_jni_headers', 34 'navigation_interception_jni_headers',
35 ], 35 ],
36 'sources': [ 36 'sources': [
37 # Note: sources list duplicated in GN build. 37 # Note: sources list duplicated in GN build.
38 'navigation_interception/component_jni_registrar.cc',
39 'navigation_interception/component_jni_registrar.h',
40 'navigation_interception/intercept_navigation_delegate.cc', 38 'navigation_interception/intercept_navigation_delegate.cc',
41 'navigation_interception/intercept_navigation_delegate.h', 39 'navigation_interception/intercept_navigation_delegate.h',
42 'navigation_interception/navigation_params_android.cc', 40 'navigation_interception/navigation_params_android.cc',
43 'navigation_interception/navigation_params_android.h', 41 'navigation_interception/navigation_params_android.h',
44 ], 42 ],
45 }], 43 }],
46 ], 44 ],
47 }, 45 },
48 ], 46 ],
49 'conditions': [ 47 'conditions': [
(...skipping 22 matching lines...) Expand all
72 ], 70 ],
73 'variables': { 71 'variables': {
74 'jni_gen_package': 'navigation_interception', 72 'jni_gen_package': 'navigation_interception',
75 }, 73 },
76 'includes': [ '../build/jni_generator.gypi' ], 74 'includes': [ '../build/jni_generator.gypi' ],
77 }, 75 },
78 ], 76 ],
79 }], 77 }],
80 ], 78 ],
81 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698