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

Unified Diff: tools/gn/toolchain.h

Issue 1606553002: Add support for Mac/iOS application bundles to GN tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add unit tests & support for bundle_data_filter Created 4 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
Index: tools/gn/toolchain.h
diff --git a/tools/gn/toolchain.h b/tools/gn/toolchain.h
index b49153b75205210f2dcc0165e51d2f563ab9327a..2ab77ae343792d34df7230d0ed369d13bc661c23 100644
--- a/tools/gn/toolchain.h
+++ b/tools/gn/toolchain.h
@@ -44,6 +44,7 @@ class Toolchain : public Item {
TYPE_LINK,
TYPE_STAMP,
TYPE_COPY,
+ TYPE_COPY_BUNDLE_DATA,
TYPE_NUMTYPES // Must be last.
};
@@ -60,6 +61,7 @@ class Toolchain : public Item {
static const char* kToolLink;
static const char* kToolStamp;
static const char* kToolCopy;
+ static const char* kToolCopyBundleData;
Toolchain(const Settings* settings, const Label& label);
~Toolchain() override;

Powered by Google App Engine
This is Rietveld 408576698