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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/subresource_filter/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/subresource_filter.gypi
diff --git a/components/subresource_filter.gypi b/components/subresource_filter.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..3989f8247082b18bbb1d1df4c4c24391b5b8a401
--- /dev/null
+++ b/components/subresource_filter.gypi
@@ -0,0 +1,130 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/subresource_filter/core/browser
+ 'target_name': 'subresource_filter_core_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../components/components.gyp:variations',
+ 'subresource_filter_core_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/core/browser/subresource_filter_features.cc',
+ 'subresource_filter/core/browser/subresource_filter_features.h',
+ ],
+ },
+ {
+ # GN version: //components/subresource_filter/core/browser:test_support
+ 'target_name': 'subresource_filter_core_browser_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../components/components.gyp:variations',
+ '../testing/gtest.gyp:gtest',
+ 'subresource_filter_core_browser',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/core/browser/subresource_filter_features_test_support.cc',
+ 'subresource_filter/core/browser/subresource_filter_features_test_support.h',
+ ],
+ },
+ {
+ # GN version: //components/subresource_filter/core/common
+ 'target_name': 'subresource_filter_core_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/core/common/activation_state.cc',
+ 'subresource_filter/core/common/activation_state.h',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['OS != "ios"', {
+ 'targets': [
+ {
+ # GN version: //components/subresource_filter/content/common
+ 'target_name': 'subresource_filter_content_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../content/content.gyp:content_common',
+ '../ipc/ipc.gyp:ipc',
+ 'subresource_filter_core_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/content/common/subresource_filter_message_generator.cc',
+ 'subresource_filter/content/common/subresource_filter_message_generator.h',
+ 'subresource_filter/content/common/subresource_filter_messages.h',
+ ],
+ },
+ {
+ # GN version: //components/subresource_filter/content/renderer
+ 'target_name': 'subresource_filter_content_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../content/content.gyp:content_renderer',
+ 'subresource_filter_content_common',
+ 'subresource_filter_core_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/content/renderer/subresource_filter_agent.cc',
+ 'subresource_filter/content/renderer/subresource_filter_agent.h',
+ ],
+ },
+ {
+ # GN version: //components/subresource_filter/content/browser
+ 'target_name': 'subresource_filter_content_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../content/content.gyp:content_common',
+ 'subresource_filter_content_common',
+ 'subresource_filter_core_browser',
+ 'subresource_filter_core_common',
+ '../url/url.gyp:url_lib',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'subresource_filter/content/browser/content_subresource_filter_driver.cc',
+ 'subresource_filter/content/browser/content_subresource_filter_driver.h',
+ 'subresource_filter/content/browser/content_subresource_filter_driver_factory.cc',
+ 'subresource_filter/content/browser/content_subresource_filter_driver_factory.h',
+ ],
+ },
+ ],
+ }],
+ ],
+}
« 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