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

Unified Diff: components/safe_browsing/triggers/BUILD.gn

Issue 2855643002: Very basic change to add a TriggerManager class owned by SafeBrowsingService. (Closed)
Patch Set: Fix copyright date Created 3 years, 7 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
Index: components/safe_browsing/triggers/BUILD.gn
diff --git a/components/safe_browsing/triggers/BUILD.gn b/components/safe_browsing/triggers/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..9c8901784ab8afa43e45b2087f6b92c1aae1b23c
--- /dev/null
+++ b/components/safe_browsing/triggers/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2017 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.
+
+import("//build/config/features.gni")
+
+source_set("triggers") {
+ if (safe_browsing_mode != 0) {
+ sources = [
+ "trigger_manager.cc",
+ "trigger_manager.h",
+ ]
+
+ deps = [
+ "//base:base",
+ ]
+ }
+}
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_service.cc ('k') | components/safe_browsing/triggers/trigger_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698