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

Unified Diff: components/chrome_apps/BUILD.gn

Issue 1103943003: Add components/chrome_apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « components/chrome_apps.gypi ('k') | components/chrome_apps/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/chrome_apps/BUILD.gn
diff --git a/components/chrome_apps/BUILD.gn b/components/chrome_apps/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..a5595001f2ab2043b61e8fa4587693a89344a69e
--- /dev/null
+++ b/components/chrome_apps/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//tools/grit/grit_rule.gni")
+
+grit("resources") {
+ source = "chrome_apps_resources.grd"
+ outputs = [
+ "grit/chrome_apps_resources.h",
+ "grit/chrome_apps_resources_map.cc",
+ "grit/chrome_apps_resources_map.h",
+ "chrome_apps_resources.pak",
+ "chrome_apps_resources.rc",
+ ]
+}
+
+component("chrome_apps") {
+ sources = [
+ "chrome_apps_export.h",
+ "chrome_apps_resource_util.cc",
+ "chrome_apps_resource_util.h",
+ ]
+ deps = [
+ "//base",
+ ":resources",
+ ]
+ defines = [ "CHROME_APPS_IMPLEMENTATION" ]
+}
« no previous file with comments | « components/chrome_apps.gypi ('k') | components/chrome_apps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698