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

Unified Diff: tools/gn/gyp_target_writer.cc

Issue 149163005: Work on GN iOS build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | « tools/gn/gyp_target_writer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/gyp_target_writer.cc
diff --git a/tools/gn/gyp_target_writer.cc b/tools/gn/gyp_target_writer.cc
index da66701500603abf206e55effafa900d2937bf12..1c1a6a5d37d006fc99e9b141e14190d7c5b0c154 100644
--- a/tools/gn/gyp_target_writer.cc
+++ b/tools/gn/gyp_target_writer.cc
@@ -18,6 +18,19 @@
#include "tools/gn/target.h"
#include "tools/gn/toolchain.h"
+GypTargetWriter::TargetGroup::TargetGroup()
+ : debug(NULL),
+ release(NULL),
+ host_debug(NULL),
+ host_release(NULL),
+ debug64(NULL),
+ release64(NULL),
+ xcode_debug(NULL),
+ xcode_release(NULL),
+ xcode_host_debug(NULL),
+ xcode_host_release(NULL) {
+}
+
GypTargetWriter::GypTargetWriter(const Target* target,
const Toolchain* toolchain,
const SourceDir& gyp_dir,
« no previous file with comments | « tools/gn/gyp_target_writer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698