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

Unified Diff: hax/BUILD.gn

Issue 2269013002: example failure for UncheckedMalloc + DSO Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Linker script Created 4 years, 4 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 | « BUILD.gn ('k') | hax/hax.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: hax/BUILD.gn
diff --git a/hax/BUILD.gn b/hax/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d5dc227381da1158779f5d4c77fc271d285c5784
--- /dev/null
+++ b/hax/BUILD.gn
@@ -0,0 +1,11 @@
+executable("hax") {
+ sources = [ "hax.cc" ]
+ data_deps = [ ":haxlib" ]
+ deps = [ "//base" ]
+ ldflags = [ "-Wl,--version-script=" + rebase_path("hax.lst") ]
+}
+
+shared_library("haxlib") {
+ sources = [ "haxlib.cc" ]
+ deps = [ "//base" ]
+}
« no previous file with comments | « BUILD.gn ('k') | hax/hax.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698