summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/safe_browsing
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2016-11-10 14:06:09 +0100
committerMichal Klocek <michal.klocek@qt.io>2016-11-16 13:45:02 +0000
commit777da810b25f517d54dc4b7771e42a4ea38c355b (patch)
tree675d9f4b67f68441adffb9a01e3075d8d12c0fb2 /chromium/chrome/browser/safe_browsing
parent2eb1e44ebb98208ec9bd0acb0c410e95e8f253b9 (diff)
Add all gn, gni, typemap, mojom files
These file are required to gn be able to parse source tree. Change-Id: I9cb4a0b3897c1e99dd6e39832a8c55764fb6e1c6 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/chrome/browser/safe_browsing')
-rw-r--r--chromium/chrome/browser/safe_browsing/BUILD.gn12
-rw-r--r--chromium/chrome/browser/safe_browsing/incident_reporting/BUILD.gn12
-rw-r--r--chromium/chrome/browser/safe_browsing/incident_reporting/verifier_test/BUILD.gn28
3 files changed, 52 insertions, 0 deletions
diff --git a/chromium/chrome/browser/safe_browsing/BUILD.gn b/chromium/chrome/browser/safe_browsing/BUILD.gn
new file mode 100644
index 00000000000..241e227921c
--- /dev/null
+++ b/chromium/chrome/browser/safe_browsing/BUILD.gn
@@ -0,0 +1,12 @@
+# Copyright 2014 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("//third_party/protobuf/proto_library.gni")
+
+# GYP version: chrome/chrome_browser.gypi:safe_browsing_chunk_proto
+proto_library("chunk_proto") {
+ sources = [
+ "chunk.proto",
+ ]
+}
diff --git a/chromium/chrome/browser/safe_browsing/incident_reporting/BUILD.gn b/chromium/chrome/browser/safe_browsing/incident_reporting/BUILD.gn
new file mode 100644
index 00000000000..d8ec0ef8438
--- /dev/null
+++ b/chromium/chrome/browser/safe_browsing/incident_reporting/BUILD.gn
@@ -0,0 +1,12 @@
+# 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.
+
+import("//third_party/protobuf/proto_library.gni")
+
+# GYP version: chrome/chrome_browser.gypi:incident_reporting_state_store_data_proto
+proto_library("state_store_data_proto") {
+ sources = [
+ "state_store_data.proto",
+ ]
+}
diff --git a/chromium/chrome/browser/safe_browsing/incident_reporting/verifier_test/BUILD.gn b/chromium/chrome/browser/safe_browsing/incident_reporting/verifier_test/BUILD.gn
new file mode 100644
index 00000000000..be7f890c615
--- /dev/null
+++ b/chromium/chrome/browser/safe_browsing/incident_reporting/verifier_test/BUILD.gn
@@ -0,0 +1,28 @@
+# 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.
+
+assert(is_win)
+
+shared_library("verifier_test_dll_1") {
+ testonly = true
+ sources = [
+ "verifier_test_dll.cc",
+ "verifier_test_dll_1.def",
+ ]
+
+ # Unconditionally disable incremental linking for these modules so that
+ # their exports do not go through an ILT jmp stub.
+ configs -= [ "//build/config/win:default_incremental_linking" ]
+ configs += [ "//build/config/win:no_incremental_linking" ]
+}
+
+shared_library("verifier_test_dll_2") {
+ testonly = true
+ sources = [
+ "verifier_test_dll.cc",
+ "verifier_test_dll_2.def",
+ ]
+ configs -= [ "//build/config/win:default_incremental_linking" ]
+ configs += [ "//build/config/win:no_incremental_linking" ]
+}