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

Unified Diff: chrome/app/mash/BUILD.gn

Issue 2655943002: Bake chrome mash catalog into MashRunner (Closed)
Patch Set: Created 3 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 | « no previous file | chrome/app/mash/mash_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/mash/BUILD.gn
diff --git a/chrome/app/mash/BUILD.gn b/chrome/app/mash/BUILD.gn
index 76dc0c4ac4b1cb633335112a7eb2cfbf4fe161c4..e78d03795626f7aeca2225f0dfba2149327c379f 100644
--- a/chrome/app/mash/BUILD.gn
+++ b/chrome/app/mash/BUILD.gn
@@ -11,6 +11,7 @@ source_set("mash") {
"mash_runner.h",
]
deps = [
+ ":catalog_cpp_source",
"//base:i18n",
"//components/tracing:startup_tracing",
"//content/public/common",
@@ -28,10 +29,6 @@ source_set("mash") {
"//services/service_manager/standalone",
"//url",
]
- data_deps = [
- ":catalog_copy",
- "//chrome/app:service_manifests",
- ]
if (is_chromeos) {
sources += [
@@ -80,12 +77,7 @@ catalog("catalog") {
catalog_deps = [ "//chrome/app:catalog" ]
}
-copy("catalog_copy") {
- sources = get_target_outputs(":catalog")
- outputs = [
- "${root_out_dir}/chrome_mash_catalog.json",
- ]
- deps = [
- ":catalog",
- ]
+catalog_cpp_source("catalog_cpp_source") {
+ catalog = ":catalog"
+ output_symbol_name = "kChromeMashCatalogContents"
}
« no previous file with comments | « no previous file | chrome/app/mash/mash_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698