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

Side by Side Diff: components/navigation_interception.gypi

Issue 1269813002: Add a NavigationThrottle to the public content/ interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation-api
Patch Set: Rebase on https://codereview.chromium.org/1312213010/ Created 5 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/navigation_interception/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/navigation_interception/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698