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

Unified Diff: tools/gn/toolchain.h

Issue 1752033002: Add "create_bundle" target in order to support bundle with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-bundle-data
Patch Set: Add unit tests, address comments, update docs and format with clang-format Created 4 years, 9 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/test_with_scope.cc ('k') | tools/gn/toolchain.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/toolchain.h
diff --git a/tools/gn/toolchain.h b/tools/gn/toolchain.h
index bcc70c06ee4eb005949ee2a319e9d79b5dd0c0e8..47a3a447842c2812014958cb6ef877eeba173850 100644
--- a/tools/gn/toolchain.h
+++ b/tools/gn/toolchain.h
@@ -44,6 +44,8 @@ class Toolchain : public Item {
TYPE_LINK,
TYPE_STAMP,
TYPE_COPY,
+ TYPE_COPY_BUNDLE_DATA,
+ TYPE_COMPILE_XCASSETS,
TYPE_NUMTYPES // Must be last.
};
@@ -60,6 +62,8 @@ class Toolchain : public Item {
static const char* kToolLink;
static const char* kToolStamp;
static const char* kToolCopy;
+ static const char* kToolCopyBundleData;
+ static const char* kToolCompileXCAssets;
Toolchain(const Settings* settings, const Label& label);
~Toolchain() override;
« no previous file with comments | « tools/gn/test_with_scope.cc ('k') | tools/gn/toolchain.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698