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 'conditions': [ | 7 'conditions': [ |
8 ['OS != "ios"', { | 8 ['OS != "ios"', { |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'navigation_interception', | 11 'target_name': 'navigation_interception', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'defines!': ['CONTENT_IMPLEMENTATION'], | 13 'defines!': ['CONTENT_IMPLEMENTATION'], |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
16 '../content/content.gyp:content_browser', | 16 '../content/content.gyp:content_browser', |
17 '../content/content.gyp:content_common', | 17 '../content/content.gyp:content_common', |
18 '../net/net.gyp:net', | 18 '../net/net.gyp:net', |
19 ], | 19 ], |
20 'include_dirs': [ | 20 'include_dirs': [ |
21 '..', | 21 '..', |
22 '../skia/config', | 22 '../skia/config', |
23 '<(SHARED_INTERMEDIATE_DIR)/navigation_interception', | |
24 | |
25 ], | 23 ], |
26 'sources': [ | 24 'sources': [ |
27 'navigation_interception/intercept_navigation_resource_throttle.cc', | 25 'navigation_interception/intercept_navigation_resource_throttle.cc', |
28 'navigation_interception/intercept_navigation_resource_throttle.h', | 26 'navigation_interception/intercept_navigation_resource_throttle.h', |
29 'navigation_interception/navigation_params.h', | 27 'navigation_interception/navigation_params.h', |
30 'navigation_interception/navigation_params.cc', | 28 'navigation_interception/navigation_params.cc', |
31 ], | 29 ], |
32 'conditions': [ | 30 'conditions': [ |
33 ['OS=="android"', { | 31 ['OS=="android"', { |
34 'dependencies': [ | 32 'dependencies': [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'jni_gen_package': 'navigation_interception', | 69 'jni_gen_package': 'navigation_interception', |
72 }, | 70 }, |
73 'includes': [ '../build/jni_generator.gypi' ], | 71 'includes': [ '../build/jni_generator.gypi' ], |
74 }, | 72 }, |
75 ], | 73 ], |
76 }], | 74 }], |
77 ], | 75 ], |
78 }], | 76 }], |
79 ], | 77 ], |
80 } | 78 } |
OLD | NEW |