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

Side by Side Diff: components/subresource_filter.gypi

Issue 2022783002: Skeleton of the Safe Browsing Subresource Filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement RenderFrameObserver::OnDestruct introduced by rebase. Created 4 years, 6 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/subresource_filter/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/subresource_filter/core/browser
9 'target_name': 'subresource_filter_core_browser',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../components/components.gyp:variations',
14 'subresource_filter_core_common',
15 ],
16 'include_dirs': [
17 '..',
18 ],
19 'sources': [
20 # Note: sources list duplicated in GN build.
21 'subresource_filter/core/browser/subresource_filter_features.cc',
22 'subresource_filter/core/browser/subresource_filter_features.h',
23 ],
24 },
25 {
26 # GN version: //components/subresource_filter/core/browser:test_support
27 'target_name': 'subresource_filter_core_browser_test_support',
28 'type': 'static_library',
29 'dependencies': [
30 '../base/base.gyp:base',
31 '../components/components.gyp:variations',
32 '../testing/gtest.gyp:gtest',
33 'subresource_filter_core_browser',
34 ],
35 'include_dirs': [
36 '..',
37 ],
38 'sources': [
39 # Note: sources list duplicated in GN build.
40 'subresource_filter/core/browser/subresource_filter_features_test_suppor t.cc',
41 'subresource_filter/core/browser/subresource_filter_features_test_suppor t.h',
42 ],
43 },
44 {
45 # GN version: //components/subresource_filter/core/common
46 'target_name': 'subresource_filter_core_common',
47 'type': 'static_library',
48 'dependencies': [
49 '../base/base.gyp:base',
50 ],
51 'include_dirs': [
52 '..',
53 ],
54 'sources': [
55 # Note: sources list duplicated in GN build.
56 'subresource_filter/core/common/activation_state.cc',
57 'subresource_filter/core/common/activation_state.h',
58 ],
59 },
60 ],
61 'conditions': [
62 ['OS != "ios"', {
63 'targets': [
64 {
65 # GN version: //components/subresource_filter/content/common
66 'target_name': 'subresource_filter_content_common',
67 'type': 'static_library',
68 'dependencies': [
69 '../content/content.gyp:content_common',
70 '../ipc/ipc.gyp:ipc',
71 'subresource_filter_core_common',
72 ],
73 'include_dirs': [
74 '..',
75 ],
76 'sources': [
77 # Note: sources list duplicated in GN build.
78 'subresource_filter/content/common/subresource_filter_message_genera tor.cc',
79 'subresource_filter/content/common/subresource_filter_message_genera tor.h',
80 'subresource_filter/content/common/subresource_filter_messages.h',
81 ],
82 },
83 {
84 # GN version: //components/subresource_filter/content/renderer
85 'target_name': 'subresource_filter_content_renderer',
86 'type': 'static_library',
87 'dependencies': [
88 '../base/base.gyp:base',
89 '../content/content.gyp:content_common',
90 '../content/content.gyp:content_renderer',
91 'subresource_filter_content_common',
92 'subresource_filter_core_common',
93 ],
94 'include_dirs': [
95 '..',
96 ],
97 'sources': [
98 # Note: sources list duplicated in GN build.
99 'subresource_filter/content/renderer/subresource_filter_agent.cc',
100 'subresource_filter/content/renderer/subresource_filter_agent.h',
101 ],
102 },
103 {
104 # GN version: //components/subresource_filter/content/browser
105 'target_name': 'subresource_filter_content_browser',
106 'type': 'static_library',
107 'dependencies': [
108 '../base/base.gyp:base',
109 '../content/content.gyp:content_browser',
110 '../content/content.gyp:content_common',
111 'subresource_filter_content_common',
112 'subresource_filter_core_browser',
113 'subresource_filter_core_common',
114 '../url/url.gyp:url_lib',
115 ],
116 'include_dirs': [
117 '..',
118 ],
119 'sources': [
120 # Note: sources list duplicated in GN build.
121 'subresource_filter/content/browser/content_subresource_filter_drive r.cc',
122 'subresource_filter/content/browser/content_subresource_filter_drive r.h',
123 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.cc',
124 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.h',
125 ],
126 },
127 ],
128 }],
129 ],
130 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/subresource_filter/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698