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

Side by Side Diff: components/navigation_interception.gypi

Issue 11830043: Move content/components/navigation_interception to src/components (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix win build Created 7 years, 11 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
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7 'conditions': [
8 ['OS != "ios"', {
9 'targets': [
10 {
11 'target_name': 'navigation_interception',
12 'type': 'static_library',
13 'defines!': ['CONTENT_IMPLEMENTATION'],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../content/content.gyp:content_browser',
17 '../content/content.gyp:content_common',
18 '../content/content.gyp:content_gpu',
19 '../content/content.gyp:content_renderer',
20 '../net/net.gyp:net',
21 ],
22 'include_dirs': [
23 '..',
24 '../skia/config',
25 '<(SHARED_INTERMEDIATE_DIR)/navigation_interception',
26
27 ],
28 'sources': [
29 'navigation_interception/intercept_navigation_resource_throttle.cc',
30 'navigation_interception/intercept_navigation_resource_throttle.h',
31 ],
32 'conditions': [
33 ['OS=="android"', {
34 'dependencies': [
35 'navigation_interception_jni_headers',
36 ],
37 'sources': [
38 'navigation_interception/component_jni_registrar.cc',
39 'navigation_interception/component_jni_registrar.h',
40 'navigation_interception/intercept_navigation_delegate.cc',
41 'navigation_interception/intercept_navigation_delegate.h',
42 ],
43 }],
44 ],
45 },
46 ],
47 'conditions': [
48 ['OS=="android"', {
49 'targets': [
50 {
51 'target_name': 'navigation_interception_java',
52 'type': 'none',
53 'dependencies': [
54 '../base/base.gyp:base',
55 ],
56 'variables': {
57 'package_name': 'navigation_interception',
58 'java_in_dir': 'navigation_interception/android/java',
59 },
60 'includes': [ '../build/java.gypi' ],
61 },
62 {
63 'target_name': 'navigation_interception_jni_headers',
64 'type': 'none',
65 'sources': [
66 'navigation_interception/android/java/src/org/chromium/content/c omponents/navigation_interception/InterceptNavigationDelegate.java',
67 ],
68 'variables': {
69 'jni_gen_dir': 'navigation_interception',
70 },
71 'includes': [ '../build/jni_generator.gypi' ],
72 },
73 ],
74 }],
75 ],
76 }],
77 ],
78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698