OLD | NEW |
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 'target_name': 'navigation_interception', | 9 'target_name': 'navigation_interception', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'targets': [ | 45 'targets': [ |
46 { | 46 { |
47 'target_name': 'navigation_interception_java', | 47 'target_name': 'navigation_interception_java', |
48 'type': 'none', | 48 'type': 'none', |
49 'dependencies': [ | 49 'dependencies': [ |
50 '../base/base.gyp:base', | 50 '../base/base.gyp:base', |
51 ], | 51 ], |
52 'variables': { | 52 'variables': { |
53 'package_name': 'navigation_interception', | 53 'package_name': 'navigation_interception', |
54 'java_in_dir': 'components/navigation_interception/java', | 54 'java_in_dir': 'components/navigation_interception/java', |
55 # TODO(jknotten): Remove once external dependencies have been | |
56 # updated to use the interface in its new package. | |
57 'additional_src_dirs' : ['../chrome/browser/component/navigation_int
erception/java'] | |
58 }, | 55 }, |
59 'includes': [ '../build/java.gypi' ], | 56 'includes': [ '../build/java.gypi' ], |
60 }, | 57 }, |
61 { | 58 { |
62 'target_name': 'navigation_interception_jni_headers', | 59 'target_name': 'navigation_interception_jni_headers', |
63 'type': 'none', | 60 'type': 'none', |
64 'sources': [ | 61 'sources': [ |
65 'components/navigation_interception/java/src/org/chromium/content/co
mponents/navigation_interception/InterceptNavigationDelegate.java', | 62 'components/navigation_interception/java/src/org/chromium/content/co
mponents/navigation_interception/InterceptNavigationDelegate.java', |
66 ], | 63 ], |
67 'variables': { | 64 'variables': { |
68 'jni_gen_dir': 'navigation_interception', | 65 'jni_gen_dir': 'navigation_interception', |
69 }, | 66 }, |
70 'includes': [ '../build/jni_generator.gypi' ], | 67 'includes': [ '../build/jni_generator.gypi' ], |
71 }, | 68 }, |
72 ], | 69 ], |
73 }], | 70 }], |
74 ], | 71 ], |
75 } | 72 } |
OLD | NEW |