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

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: Addressed comments from battre@. 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
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 ],
93 'include_dirs': [
94 '..',
95 ],
96 'sources': [
97 # Note: sources list duplicated in GN build.
98 'subresource_filter/content/renderer/subresource_filter_agent.cc',
99 'subresource_filter/content/renderer/subresource_filter_agent.h',
100 ],
101 },
102 {
103 # GN version: //components/subresource_filter/content/browser
104 'target_name': 'subresource_filter_content_browser',
105 'type': 'static_library',
106 'dependencies': [
107 '../base/base.gyp:base',
108 '../content/content.gyp:content_browser',
109 '../content/content.gyp:content_common',
110 'subresource_filter_content_common',
111 'subresource_filter_core_browser',
112 '../url/url.gyp:url_lib',
113 ],
114 'include_dirs': [
115 '..',
116 ],
117 'sources': [
118 # Note: sources list duplicated in GN build.
119 'subresource_filter/content/browser/content_subresource_filter_drive r.cc',
120 'subresource_filter/content/browser/content_subresource_filter_drive r.h',
121 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.cc',
122 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.h',
123 ],
124 },
125 ],
126 }],
127 ],
128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698