| 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 ], | 19 ], |
| 19 'include_dirs': [ | 20 'include_dirs': [ |
| 20 '..', | 21 '..', |
| 21 '../skia/config', | 22 '../skia/config', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 24 # Note: sources list duplicated in GN build. | 25 # Note: sources list duplicated in GN build. |
| 25 'navigation_interception/intercept_navigation_resource_throttle.cc', | 26 'navigation_interception/intercept_navigation_resource_throttle.cc', |
| 26 'navigation_interception/intercept_navigation_resource_throttle.h', | 27 'navigation_interception/intercept_navigation_resource_throttle.h', |
| 27 'navigation_interception/navigation_params.h', | 28 'navigation_interception/navigation_params.h', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 ], | 71 ], |
| 71 'variables': { | 72 'variables': { |
| 72 'jni_gen_package': 'navigation_interception', | 73 'jni_gen_package': 'navigation_interception', |
| 73 }, | 74 }, |
| 74 'includes': [ '../build/jni_generator.gypi' ], | 75 'includes': [ '../build/jni_generator.gypi' ], |
| 75 }, | 76 }, |
| 76 ], | 77 ], |
| 77 }], | 78 }], |
| 78 ], | 79 ], |
| 79 } | 80 } |
| OLD | NEW |