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

Unified Diff: build/secondary/third_party/crashpad/crashpad/third_party/apple_cctools/BUILD.gn

Issue 1417673004: Make unit_tests compile in Mac GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mac
Patch Set: . Created 5 years, 2 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: build/secondary/third_party/crashpad/crashpad/third_party/apple_cctools/BUILD.gn
diff --git a/build/secondary/third_party/crashpad/crashpad/third_party/apple_cctools/BUILD.gn b/build/secondary/third_party/crashpad/crashpad/third_party/apple_cctools/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c0250564936de67f480378d89e13b457333a9141
--- /dev/null
+++ b/build/secondary/third_party/crashpad/crashpad/third_party/apple_cctools/BUILD.gn
@@ -0,0 +1,15 @@
+# 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.
+
+config("apple_cctools_config") {
+ include_dirs = [ "../.." ]
+}
+
+source_set("apple_cctools") {
+ sources = [
+ "cctools/include/mach-o/getsect.h",
+ "cctools/libmacho/getsecbyname.c",
+ ]
+ public_configs = [ ":apple_cctools_config" ]
+}

Powered by Google App Engine
This is Rietveld 408576698