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

Unified Diff: third_party/kasko/BUILD.gn

Issue 2621363002: Remove Kasko! (Closed)
Patch Set: Rebase Created 3 years, 11 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 | « testing/scripts/syzyasan_integration_tests.py ('k') | third_party/kasko/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/kasko/BUILD.gn
diff --git a/third_party/kasko/BUILD.gn b/third_party/kasko/BUILD.gn
deleted file mode 100644
index e32e7f76e2e265efed0a9af93d55e6167a189c33..0000000000000000000000000000000000000000
--- a/third_party/kasko/BUILD.gn
+++ /dev/null
@@ -1,54 +0,0 @@
-# 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("//build/buildflag_header.gni")
-import("//build/config/chrome_build.gni")
-import("//third_party/kasko/kasko.gni")
-
-buildflag_header("kasko_features") {
- header = "kasko_features.h"
- flags = [ "ENABLE_KASKO=$enable_kasko" ]
-}
-
-if (enable_kasko) {
- assert(is_win, "Kasko only support Windows.")
- assert(target_cpu == "x86", "Kasko only support 32 bits.")
-
- # TODO(sebmarchand): Fix this once the Kasko dependency in SyzyAsan has been
- # removed for the non-official builds.
- #assert(is_chrome_branded,
- # "The Kasko client is only initialized in Chrome-branded builds.")
-
- config("kasko_config") {
- visibility = [ ":*" ]
- include_dirs = [ "//third_party/kasko/binaries/include" ]
- lib_dirs = [ "//third_party/kasko/binaries" ]
- libs = [ "kasko.dll.lib" ]
- }
-
- copy("copy_kasko_dll") {
- visibility = [ ":*" ]
- sources = [
- "//third_party/kasko/binaries/kasko.dll",
- "//third_party/kasko/binaries/kasko.dll.pdb",
- ]
- outputs = [
- "$root_out_dir/{{source_file_part}}",
- ]
- }
-
- group("kasko") {
- public_deps = [
- ":copy_kasko_dll",
- ":kasko_features",
- ]
- public_configs = [ ":kasko_config" ]
- }
-} else {
- group("kasko") {
- public_deps = [
- ":kasko_features",
- ]
- }
-}
« no previous file with comments | « testing/scripts/syzyasan_integration_tests.py ('k') | third_party/kasko/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698