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

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: 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': [
battre 2016/05/30 15:29:25 # Note: sources list duplicated in GN build.
engedy 2016/05/30 20:54:00 Done.
77 'subresource_filter/content/common/subresource_filter_message_genera tor.cc',
78 'subresource_filter/content/common/subresource_filter_message_genera tor.h',
79 'subresource_filter/content/common/subresource_filter_messages.h',
80 ],
81 },
82 {
83 # GN version: //components/subresource_filter/content/renderer
84 'target_name': 'subresource_filter_content_renderer',
85 'type': 'static_library',
86 'dependencies': [
87 '../base/base.gyp:base',
88 '../content/content.gyp:content_common',
89 '../content/content.gyp:content_renderer',
90 'subresource_filter_content_common',
91 ],
92 'include_dirs': [
93 '..',
94 ],
95 'sources': [
96 # Note: sources list duplicated in GN build.
97 'subresource_filter/content/renderer/subresource_filter_agent.cc',
98 'subresource_filter/content/renderer/subresource_filter_agent.h',
99 ],
100 },
101 {
102 # GN version: //components/subresource_filter/content/browser
103 'target_name': 'subresource_filter_content_browser',
104 'type': 'static_library',
105 'dependencies': [
106 '../base/base.gyp:base',
107 '../content/content.gyp:content_browser',
108 '../content/content.gyp:content_common',
109 'subresource_filter_content_common',
110 'subresource_filter_core_browser',
111 '../url/url.gyp:url_lib',
112 ],
113 'include_dirs': [
114 '..',
115 ],
116 'sources': [
117 # Note: sources list duplicated in GN build.
118 'subresource_filter/content/browser/content_subresource_filter_drive r.cc',
119 'subresource_filter/content/browser/content_subresource_filter_drive r.h',
120 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.cc',
121 'subresource_filter/content/browser/content_subresource_filter_drive r_factory.h',
122 ],
123 },
124 ],
125 }],
126 ],
127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698