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

Unified Diff: chrome/common/BUILD.gn

Issue 1026833004: Make common depend on app_mode_app_support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Port to GN Created 5 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 | « chrome/chrome_common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/BUILD.gn
diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
index eaf976791149e66f5ad0f4144dcce21d55adfd83..b287530709ab7b80d327de21d20e2b9fbea99e2b 100644
--- a/chrome/common/BUILD.gn
+++ b/chrome/common/BUILD.gn
@@ -135,6 +135,7 @@ static_library("common") {
if (is_mac) {
sources +=
rebase_path(gypi_values.chrome_common_mac_sources, ".", "//chrome")
+ deps += [ ":app_mode_app_support" ]
}
if (enable_nacl) {
@@ -319,3 +320,18 @@ source_set("test_support") {
]
}
}
+
+# GN version: chrome/chrome.gyp:app_mode_app_support
+static_library("app_mode_app_support") {
Nico 2015/03/25 18:02:03 (nit: i think gn uses source_set for most things i
+ sources = [
+ "mac/app_mode_chrome_locator.h",
+ "mac/app_mode_chrome_locator.mm",
+ "mac/app_mode_common.h",
+ "mac/app_mode_common.mm",
+ ]
+
+ deps = [
+ ":constants",
+ "//base",
+ ]
+}
« no previous file with comments | « chrome/chrome_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698