| OLD | NEW |
| (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 'targets': [ |
| 8 { |
| 9 'target_name': 'navigation_interception', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '<(DEPTH)/base/base.gyp:base', |
| 13 '<(DEPTH)/content/content.gyp:content_browser', |
| 14 '<(DEPTH)/content/content.gyp:content_common', |
| 15 '<(DEPTH)/net/net.gyp:net', |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '<(DEPTH)', |
| 19 ], |
| 20 'sources': [ |
| 21 'intercept_navigation_resource_throttle.cc', |
| 22 'intercept_navigation_resource_throttle.h', |
| 23 ], |
| 24 }, |
| 25 ], |
| 26 } |
| OLD | NEW |