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 # GN version: //components/navigation_interception | 9 # GN version: //components/navigation_interception |
10 'target_name': 'navigation_interception', | 10 'target_name': 'navigation_interception', |
11 'type': 'static_library', | 11 'type': 'static_library', |
12 'defines!': ['CONTENT_IMPLEMENTATION'], | 12 'defines!': ['CONTENT_IMPLEMENTATION'], |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../content/content.gyp:content_browser', | 15 '../content/content.gyp:content_browser', |
16 '../content/content.gyp:content_common', | 16 '../content/content.gyp:content_common', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 '../ui/base/ui_base.gyp:ui_base', | 18 '../ui/base/ui_base.gyp:ui_base', |
19 ], | 19 ], |
20 'include_dirs': [ | 20 'include_dirs': [ |
21 '..', | 21 '..', |
22 '../skia/config', | 22 '../skia/config', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 # Note: sources list duplicated in GN build. | 25 # Note: sources list duplicated in GN build. |
26 'navigation_interception/intercept_navigation_resource_throttle.cc', | 26 'navigation_interception/intercept_navigation_throttle.cc', |
27 'navigation_interception/intercept_navigation_resource_throttle.h', | 27 'navigation_interception/intercept_navigation_throttle.h', |
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. |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 ], | 72 ], |
73 'variables': { | 73 'variables': { |
74 'jni_gen_package': 'navigation_interception', | 74 'jni_gen_package': 'navigation_interception', |
75 }, | 75 }, |
76 'includes': [ '../build/jni_generator.gypi' ], | 76 'includes': [ '../build/jni_generator.gypi' ], |
77 }, | 77 }, |
78 ], | 78 ], |
79 }], | 79 }], |
80 ], | 80 ], |
81 } | 81 } |
OLD | NEW |