Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: chrome/browser/component/navigation_interception/navigation_interception.gypi

Issue 10946008: Componentize IgnoreNavigationResourceThrottle and add chrome and webview specific implementations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698